[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / test-72.cs
1 //
2 // Compile test for referencing types on nested types
3 //
4
5 using System;
6
7 public class outer {
8         public class inner {
9                 public void meth(Object o) {
10                         inner inst = (inner)o;
11                 }
12         }
13         
14         public static int Main ()
15         {
16                 // We only test that this compiles.
17                 
18                 return 0;
19         }
20   }
21