[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / test-378.cs
1 // Compiler options: -unsafe
2
3 public unsafe struct Foo
4 {
5         public Foo *foo;
6 }
7
8 public class C
9 {
10         public static void Main () {}
11 }