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

class X {
	public static void Main() {
		int i = 123821738792178327198;
	}
}