[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / gtest-402.cs
1 class X {
2         public static void Main ()
3         {
4                 int h = 1, o = 2;
5
6                 if (h+4 < o >> 3){
7                 }
8         }
9 }
10