2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0305.cs
blob5aa69a5660f75b3bbce8e366845891189f4d0e00
1 // CS0305: Using the generic type `N1.A<T>' requires `1' type argument(s)
2 // Line: 12
3 namespace N1
5 class A<T>
10 namespace N3
12 using W = N1.A;
14 class X
16 static void Main ()