9 lines
146 B
C#
Raw Permalink Normal View History

// CS0115: `X.Bla()' is marked as an override but no suitable method found to override
// Line: 5
class X {
public override void Bla ()
{
}
}