**** Merged from MCS ****
[mono-project.git] / mcs / errors / gcs0308-3.cs
blobbd1d79c2f9ed878a8b76faa7796f5b9a59c7139b
1 // CS0308: The non-generic type `N1.A' cannot be used with type arguments.
2 // Line: 11
3 namespace N1
5 class A
6 { }
9 namespace N3
11 using W = N1.A<int>;
13 class X
15 static void Main ()