[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0308.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 ()