summaryrefslogtreecommitdiff
path: root/mcs/errors/CS0205-3-lib.cs
blob: 48093242c88001154e6148fcb504f3bc6305b4b5 (plain)
1
2
3
4
5
6
7
8
9
// CS0205: Cannot call an abstract base member `A.Foobar'
// Line: 15

public abstract class A
{
        protected abstract int Foobar { get; }
}

public abstract class A1 : A { }