9 lines
100 B
C#
9 lines
100 B
C#
|
// CS0509: `A': cannot derive from sealed type `D'
|
||
|
// Line: 6
|
||
|
|
||
|
delegate void D ();
|
||
|
|
||
|
class A : D
|
||
|
{
|
||
|
}
|