Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-150.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
        }
}