summaryrefslogtreecommitdiff
path: root/mcs/tests/test-150.cs
blob: c81aff38239eff9566db2bed8b021030ea5dc878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
class T {
	//
	// Tests that the following compiles
	
	uint bar = (uint) int.MaxValue + 1;
	
        public static int Main() {
                if (Int32.MinValue == 0x80000000)
                        return 1;


                return 0;
        }
}