Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / test-static-using-10.cs
blob50f9d351e4d14a66f3a3c583058a4b46dfd96e5f
1 namespace A
3 public class T
5 public class N
12 namespace B
14 using static A.T;
16 static class Program
18 static void Main ()
20 var t = typeof (N);
21 var u = new N ();