blob: 0c28abfd835af79667772a4d095fbb0d57ad2e30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0308: The non-generic type `Test.NonGeneric' cannot be used with the type arguments
// Line: 8
public class Test
{
public static void Main (string[] args)
{
NonGeneric dummy = new NonGeneric<string> ();
}
internal class NonGeneric
{
}
}
|