11 lines
113 B
C#
Raw Permalink Normal View History

// CS1530: Keyword `new' is not allowed on namespace elements
// Line: 8
class Base
{
}
new class X: Base {
}