[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-static-using-04.cs
blob4064e8092daf193b45436d27cfe92603926067f2
1 // Compiler options: -langversion:6
3 using System;
5 namespace A.B
7 static class X
9 public static int Test (object o)
11 return 1;
16 namespace A.C
18 static class X
20 private static int Test (int o)
22 return 2;
27 namespace C
29 using static A.B.X;
30 using static A.C.X;
32 class M
34 public static int Main ()
36 if (Test (3) != 1)
37 return 1;
39 return 0;