summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1521-2.cs
blob: 68cd7f7cd1a10a42631ed01672b7e86fc9562bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1521: Invalid base type `C*'
// Line: 9
// Compiler options: -unsafe

struct C
{
}

unsafe class C2: C*
{
}