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

cs1021.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3eef5b3b0e837849b4c62de9f998fbf2ba91df5 (plain)
1
2
3
4
5
6
7
8
// cs1021.cs: Integral constant is too large
// Line: 6

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