Files
linux-packaging-mono/mcs/errors/cs1525-25.cs

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()
{
}
}