Take stars out of types where they make more sense.
[mono-project.git] / mcs / tests / gtest-568.cs
blob7a6bc0fdb0a050d635dc64681253f2455d9a6c38
1 using System;
3 class X
5 public static int Main ()
7 object o = 10;
8 int? x = 3;
10 if ((int) o < x) {
11 return 1;
14 if (x > (int) o) {
15 return 2;
18 return 0;