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

cs0513.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e0ffe9764c02373cf81687eca2b17504c6e7d1f (plain)
1
2
3
4
5
6
7
8
9
10
// cs0513.cs: `X.myAbstract()' is abstract but it is contained in nonabstract class
// Line: 5

class X {
	public abstract void myAbstract ();
}

class Y : X {
}