2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-137.cs
blob29a236118d679b7eb3f2ba4893d2e7d80c155f5c
1 using System;
3 class X
5 public static int Main ()
7 int? a = 4;
8 int? b = -a;
9 Console.WriteLine (b);
11 int? x = 42;
12 uint y = 42;
14 bool r = (x == y);
15 if (!r)
16 return 1;
18 if (x != y)
19 return 2;
21 return 0;