Remove invalid tests for image palettes in GdiPlusTest (#5671)
[mono.git] / mcs / errors / cs0305-8.cs
1 // CS0305: Using the generic type `N<T>' requires `1' type argument(s)
2 // Line: 12
3
4 class N<T>
5 {
6 }
7
8 class C
9 {
10         public static void Main()
11         {
12                 global::N n = null;
13         }
14 }