summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0509-3.cs
blob: e4acbb2612da5969d7d854c412d43f2fc0bbf28c (plain)
1
2
3
4
5
6
7
8
// CS0509: `A': cannot derive from sealed type `D'
// Line: 6

delegate void D ();

class A : D
{
}