Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0534-5.cs
blobf503b735b8a2fab40bb181b3903debdf1974e502
1 // CS0534: `C1' does not implement inherited abstract member `A.M(int)'
2 // Line: 16
4 public abstract class A
6 public abstract void M (int i);
9 internal class C0 : A
11 public override void M (int i)
16 internal class C1 : A