summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0594.cs
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;
	}
}