2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / tests / gen-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 }