New test.
[mono.git] / mcs / tests / test-129.cs
1 //
2 // Check unary minus.
3 //
4 using System;
5
6 class X {
7
8         static int Main ()
9         {
10                 short a = -32768;
11                 int b = -2147483648;
12                 long c = -9223372036854775808;
13                 sbyte d = -128;
14
15                 return 0;
16         }
17 }