Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-150.cs
1 using System;
2 class T {
3         //
4         // Tests that the following compiles
5         
6         uint bar = (uint) int.MaxValue + 1;
7         
8         public static int Main() {
9                 if (Int32.MinValue == 0x80000000)
10                         return 1;
11
12
13                 return 0;
14         }
15 }