Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-137.cs
1 using System;
2
3 class X
4 {
5         public static int Main ()
6         {
7                 int? a = 4;
8                 int? b = -a;
9                 Console.WriteLine (b);
10
11                 int? x = 42;
12                 uint y = 42;
13                 
14                 bool r = (x == y);
15                 if (!r)
16                         return 1;
17                         
18                 if (x != y)
19                         return 2;
20                         
21                 return 0;
22         }
23 }