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

test-129.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11cf4b70e2c20654cba3f5511e36de535c997986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Check unary minus.
//
using System;

class X {

	static int Main ()
	{
		short a = -32768;
		int b = -2147483648;
		long c = -9223372036854775808;
		sbyte d = -128;

		return 0;
	}
}