2004-04-22 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / gcs0305-3.cs
1 // CS0305: Using the generic type `N1.A<T>' requires 1 type arguments
2 // Line: 12
3 namespace N1
4 {
5         class A<T>
6         {
7         }
8 }
9
10 namespace N3
11 {
12         using W = N1.A;
13
14         class X
15         {
16                 static void Main ()
17                 {
18                 }
19         }
20 }