[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-328.cs
blobb9a27b299174486ff4fb0b1ac694cd6a672e77fb
1 namespace X {
2 enum Z { x };
4 namespace A {
5 using Y = X;
6 namespace B {
7 using Y;
8 class Tester {
9 internal static Z z = Z.x;
10 public static void Main() { }