New test.
[mono.git] / mcs / tests / gtest-137.cs
1 using System;
2
3 class X
4 {
5         static void Main ()
6         {
7                 int? a = 4;
8                 int? b = -a;
9                 Console.WriteLine (b);
10         }
11 }