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

test-144.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e1929415de4ef4a7e96908938dae209011492d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

public class Test
{
	const int A = unchecked ((int)0x80000000);
	const int B = checked ((int)0x08000000);

        public static void Main ()
        {
	}
}