Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-192.cs
1 //
2 // Tests that we validate the unchecked state during constatn resolution
3 //
4 class X {
5         public static void Main ()
6         {
7                 unchecked {
8                         const int val = (int)0x800B0109;
9                 }
10         }
11 }