[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0221.cs
blob94b974e56cb935f60cecece4a91749fceb143c03
1 // CS0221: Constant value `4294967295' cannot be converted to a `int' (use `unchecked' syntax to override)
2 // Line: 5
4 class X {
5 int a = (int) 0xffffffff;
7 static void Main ()