Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0534-9.cs
blobe2e5e1069b85d6c332b562b9217ef38f96c3aabe
1 // CS0534: `C' does not implement inherited abstract member `A.Foo(string)'
2 // Line: 13
4 public abstract class A
6 public abstract int Foo (string s);
9 public abstract class B : A
11 public abstract override int Foo (string s);
14 public class C : B