Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0205-3.cs
blob63a9216c8223974df64dd190a3856d67952f15dc
1 // CS0205: Cannot call an abstract base member `A.Foobar.get'
2 // Line: 18
3 // Compiler options: -r:CS0205-3-lib.dll
5 using System;
7 public class B: A1
9 protected override int Foobar {
10 get {
11 return base.Foobar;
15 static void Main ()
17 B b = new B ();
18 if (b.Foobar == 1) {