[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0305.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 ()