2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0308.cs
blobde8daf16cb95613549e71cf1a658b6623ff842f8
1 // CS0308: The non-generic type `N1.A' cannot be used with the 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 ()