[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / CS0205-3-lib.cs
blob48093242c88001154e6148fcb504f3bc6305b4b5
1 // CS0205: Cannot call an abstract base member `A.Foobar'
2 // Line: 15
4 public abstract class A
6 protected abstract int Foobar { get; }
9 public abstract class A1 : A { }