blob: 63a9216c8223974df64dd190a3856d67952f15dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// CS0205: Cannot call an abstract base member `A.Foobar.get'
// Line: 18
// Compiler options: -r:CS0205-3-lib.dll
using System;
public class B: A1
{
protected override int Foobar {
get {
return base.Foobar;
}
}
static void Main ()
{
B b = new B ();
if (b.Foobar == 1) {
}
}
}
|