Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0308.cs
1 // CS0308: The non-generic type `N1.A' cannot be used with the type arguments
2 // Line: 11
3 namespace N1
4 {
5         class A
6         { }
7 }
8
9 namespace N3
10 {
11         using W = N1.A<int>;
12
13         class X
14         {
15                 static void Main ()
16                 {
17                 }
18         }
19 }