[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / test-768.cs
1 namespace A.N
2 {
3         class Wrong
4         {
5         }
6 }
7
8 namespace N
9 {
10         class C
11         {
12                 public static string value;
13         }
14 }
15
16 namespace X
17 {
18         using A;
19         
20         public class TestClass
21         {
22                 public static void Main ()
23                 {
24                         string s = N.C.value;
25                 }
26         }
27 }