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: aca0420eee2efd1798c719634b81daf26ec1c2db (plain)
1
2
3
4
5
6
7
8
// CS0115: `X.Bla()' is marked as an override but no suitable method found to override
// Line: 5

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