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

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

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