[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-160.cs
blob6f2c7b51ca08ab557be4d865e0631a5d3e7398bc
1 class B {
2 public S s;
4 class S {
5 public int a;
7 class T {
8 static B foo;
10 static int blah (object arg) {
11 B look = (B)arg;
12 foo.s.a = 9;
13 look.s.a = foo.s.a;
14 return look.s.a;
17 public static int Main() {
18 // Compilation only test;
19 return 0;