9 lines
100 B
C#
Raw Permalink Normal View History

// CS0509: `A': cannot derive from sealed type `D'
// Line: 6
delegate void D ();
class A : D
{
}