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: 58975a45bf819112a1d9780c6ca48ce49fd63b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0221.cs: Constant value `4294967295' cannot be converted to a `int' (use `unchecked' syntax to override)
// Line: 5

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