[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-static-using-01.cs
blob8c80732704b6e4f9f19fce6ce18a767b9a9c9556
1 // Compiler options: -langversion:6
3 using static A.B.X;
5 namespace A.B
7 static class X
9 public static int Test ()
11 return 5;
16 namespace C
18 class M
20 public static int Main ()
22 if (Test () != 5)
23 return 1;
25 return 0;