2003-07-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs0221.cs
1 // cs0221.cs: cannot convert constant value to type, use in checked context
2 // Line: 5
3
4 class X {
5         int a = (int) 0xffffffff;
6         
7         static void Main ()
8         {
9                 
10         }
11 }