12 lines
136 B
C#
Raw Normal View History

// CS1525: Unexpected symbol `=', expecting `.' or `['
// Line: 8
class DerivedClass
{
public DerivedClass ()
{
base = null;
}
}