[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-672.cs
blobb50c96180b4bf8295d72c31f65f6604ea916c7d0
1 // Compiler options: -unsafe
3 struct S
7 class X
9 unsafe int* Foo {
10 get { return null; }
13 unsafe S* Foo2 {
14 get { return null; }
17 public static void Main ()