Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

23 lines
300 B
C#

// 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) {
}
}
}