summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0513.cs
blob: 762d831efc6ccbfa87deffd3b1eb0ca60a4f73f0 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0513: `X.myAbstract()' is abstract but it is declared in the non-abstract class `X'
// Line: 5

class X {
	public abstract void myAbstract ();
}

class Y : X {
}