11 lines
120 B
C#
Raw Normal View History

// CS1525: Unexpected symbol `super', expecting `base' or `this'
// Line: 7
class Bar
{
Bar(int a)
:super()
{
}
}