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: 50b5f591c1f9d781e2f6c8db27c62eb29a2d38e9 (plain)
1
2
3
4
5
6
7
8
//
// cs1021: Integral constant is too large

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