summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1521.cs
blob: e5772000f51fb15b6a31962654c7eef402e8b0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1521: Invalid base type `C[]'
// Line: 8

class C
{
}

class C2: C[]
{
}