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