Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0305.cs
1 // CS0305: Using the generic type `N1.A<T>' requires `1' type argument(s)
2 // Line: 12
3 namespace N1
4 {
5         class A<T>
6         {
7         }
8 }
9
10 namespace N3
11 {
12         using W = N1.A;
13
14         class X
15         {
16                 static void Main ()
17                 {
18                 }
19         }
20 }