2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / gcs0246-8.cs
1 // CS0308: The non-generic type `N1.A' cannot be used with type arguments.
2 // Line: 11
3 namespace N1
4 {
5         class A
6         { }
7 }
8
9 namespace N3
10 {
11         using W = N1.A<int>;
12
13         class X
14         {
15                 static void Main ()
16                 {
17                 }
18         }
19 }