Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0308-9.cs
1 // CS0308: The non-generic type `Test.NonGeneric' cannot be used with the type arguments
2 // Line: 8
3
4 public class Test
5 {
6         public static void Main (string[] args)
7         {
8                 NonGeneric dummy = new NonGeneric<string> ();
9         }
10
11         internal class NonGeneric
12         {
13         }
14 }