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: 8b60fc75e59d802348a6ebac2903f57b8f151bc4 (plain)
1
2
3
4
5
6
7
8
// CS0594: Floating-point constant is outside the range of type `decimal'
// Line: 6

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