[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }