Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0308-9.cs
blob0c28abfd835af79667772a4d095fbb0d57ad2e30
1 // CS0308: The non-generic type `Test.NonGeneric' cannot be used with the type arguments
2 // Line: 8
4 public class Test
6 public static void Main (string[] args)
8 NonGeneric dummy = new NonGeneric<string> ();
11 internal class NonGeneric