Toggle the turbo button
[mono.git] / mcs / tests / test-static-using-12.cs
1 namespace A.B
2 {
3         public static class G<T>
4         {
5                 public class DD
6                 {
7                 }
8
9                 public static object Dock () => null;
10         }
11 }
12
13 namespace N2
14 {
15         using static A.B.G<int>;
16
17         class M : DD
18         {
19                 public static void Main ()
20                 {
21                         Dock ();
22                 }
23         }
24 }