Files
linux-packaging-mono/mcs/tests/test-328.cs

14 lines
174 B
C#
Raw Normal View History

namespace X {
enum Z { x };
}
namespace A {
using Y = X;
namespace B {
using Y;
class Tester {
internal static Z z = Z.x;
public static void Main() { }
}
}
}