Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-144.cs
1 using System;
2
3 public class Test
4 {
5         const int A = unchecked ((int)0x80000000);
6         const int B = checked ((int)0x08000000);
7
8         public static void Main ()
9         {
10         }
11 }