Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0221.cs
1 // CS0221: Constant value `4294967295' cannot be converted to a `int' (use `unchecked' syntax to override)
2 // Line: 5
3
4 class X {
5         int a = (int) 0xffffffff;
6         
7         static void Main ()
8         {
9                 
10         }
11 }