2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / test-192.cs
1 //
2 // Tests that we validate the unchecked state during constatn resolution
3 //
4 class X {
5         static void Main ()
6         {
7                 unchecked {
8                         const int val = (int)0x800B0109;
9                 }
10         }
11 }