[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-95.cs
blob7289acfbd1ee545ad076c0ccf4b957ddb028af88
1 class X {
3 double d = 0;
5 X ()
9 public static int Main ()
11 X x = new X ();
13 if (x.d != 0)
14 return 1;
16 return 0;