[System] Throw PlatformNotSupportedException if NetworkInformation.NetworkChange...
[mono-project.git] / mcs / tests / test-268.cs
blob95c52e89b6b09101dda13a216aaf6ea8b8195022
1 public enum MyEnum { V = 1 }
3 class X {
4 public MyEnum MyEnum;
5 class Nested {
6 internal MyEnum D () {
7 return MyEnum.V;
11 public static int Main () {
12 Nested n = new Nested ();
13 return n.D() == MyEnum.V ? 0 : 1;