Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0115.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 543c656851eb0492efbd854e3de00df31b8b8b86 (plain)
1
2
3
4
5
6
7
8
// cs0115.cs: 'X.Bla()': no suitable method found to override
// Line: 9

class X {
	public override void Bla ()
	{
	}
}