summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1021-2.cs
blob: 556e7cfe86134ba6308a978f916d04f4f917a5cd (plain)
1
2
3
4
5
6
7
8
// CS1021: Integral constant is too large
// Line: 6

class X {
	public static void Main() {
		int h = 0xffffffffffffffffffffffffff;
	}
}