Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0594.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 379e5990b52e3588dd790808440ec7ffcc3e5e95 (plain)
1
2
3
4
5
6
7
8
//
// cs0594: Floating-point constant is outside the range for type 'decimal|double|float'

class X {
	public static void Main() {
		decimal d = 12311111111111111111111111111111111111111111111111m;
	}
}