[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-629.cs
blob98b7194e629e11f98ef12fbffa9ebb919840c500
1 public class Foo
3 public static class Nested
5 public static int Bar {
6 get {
7 // bar should be referring to Foo.Nested.bar here
8 return bar.value;
12 static class bar {
13 // The desired
14 public const int value = 3;
18 // The undesired
19 int bar;
21 public static void Main ()