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: 4533006ac7757bddc720b6a00a996b88308f2144 (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 () {}
}