Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0205-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63836aa4547647bf6fb187d2eef5009bd986d7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// cs0205-3.cs: Cannot call an abstract base member `A.Foobar'
// Line: 15
// 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)
			;
        }
}