[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-static-using-11.cs
blob25d19b88f7e36ffc381081dc60e04ff285a56daa
1 using static A;
2 using static B;
4 class A
6 public class TestMe
10 public static int TestMe1 ()
12 return 0;
16 class B
18 public static int TestMe2 ()
20 return 0;
23 public class TestMe1
28 class C
30 public static void Main ()
32 new TestMe1 ();