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: d2664371b047d64b3800349acf229f099ede5a9d (plain)
1
2
3
4
5
6
7
8
9
10
// cs0513.cs: X.myAbstract is abstract but it is contained in non-abstract class
// Line: 5

class X {
	public abstract void myAbstract ();
}

class Y : X {
}