11 lines
120 B
C#
11 lines
120 B
C#
|
// CS1525: Unexpected symbol `super', expecting `base' or `this'
|
||
|
// Line: 7
|
||
|
|
||
|
class Bar
|
||
|
{
|
||
|
Bar(int a)
|
||
|
:super()
|
||
|
{
|
||
|
}
|
||
|
}
|