Align eglib vcxproj with makefile.
[mono.git] / mcs / tests / test-615.cs
1 class C
2 {
3         public static void Main ()
4         {
5                 const bool b = int.MinValue == 0x80000000;
6                 
7                 ulong res = 0;
8                 char c = 'c';
9                 res = res * 16 + c;             
10         }
11 }