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

cs0534.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e41d7ee04d15f4ca298c42ab62144812086cc91 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0534: `Y' does not implement inherited abstract member `X.myAbstract()'
// Line: 5

abstract class X {
	public abstract void myAbstract ();
}

class Y : X {
static void Main (){}
}