Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-568.cs
1 using System;
2
3 class X
4 {
5         public static int Main ()
6         {
7                 object o = 10;
8                 int? x = 3;
9
10                 if ((int) o < x) {
11                         return 1;
12                 }
13                 
14                 if (x > (int) o) {
15                         return 2;
16                 }
17                 
18                 return 0;
19         }
20 }