cleol
[mcs.git] / tests / gtest-387.cs
bloba13c4d2e7051e9cd23bcfaa6a9a88d88aa8b7d5e
1 class C
3 public static int Main ()
5 sbyte? s = null;
6 long? tt = +s;
7 if (tt != null)
8 return 1;
10 long? l = null;
11 l = +l;
12 if (l != null)
13 return 2;
15 return 0;