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

cs0533.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 473c18347d3395c1e11f02139debed87bad723e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0533.cs: 'DerivedClass.Foo()' hides inherited abstract member 'BaseClass.Foo()'
// Line: 9

abstract public class BaseClass {
        abstract protected void Foo ();
}

abstract class DerivedClass: BaseClass {
        public new void Foo () {}
		public static void Main () {}
}