summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0221.cs
blob: 94b974e56cb935f60cecece4a91749fceb143c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0221: 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 ()
	{
		
	}
}