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

cs0221.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 932272ea7b8e9cf861332b8dfc5868dc3db3aee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0221.cs: cannot convert constant value to type, use in checked context
// Line: 5

class X {
	int a = (int) 0xffffffff;
	
	static void Main ()
	{
		
	}
}