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

CS0571-3-lib.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c45119b0d73962830e90cb12b8fc60cc0c677e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Testcase for bug #59980

namespace Test {
	public abstract class C0 {
		public abstract int foo { get; }
	}
	public abstract class C1 : C0 {
	}
	public class C2 : C1 {
		public override int foo { get { return 0; } }
	}
}