summaryrefslogtreecommitdiff
path: root/mcs/tests/test-752-lib.cs
blob: 2d7196858b4b8ecfa1ca20ae9026ba85c076b597 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: -target:library

public abstract class A
{
	public abstract bool IsNode { get; }
}

public abstract class B : A
{
	public override sealed bool IsNode { get { return true; } }
}