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: fe865887ce12ad03cba27d6dd4c4e4f58f990959 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0534.cs: `Y' does not implement inherited abstract member `myAbstract'
// Line: 5

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

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