codeowners update
[mono.git] / mcs / errors / cs0108-15.cs
1 // CS0118: `B.Factory' hides inherited member `A.Factory(object)'. Use the new keyword if hiding was intended
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
4
5 public abstract class A
6 {
7         public void Factory (object data) { }
8 }
9
10 public class B : A
11 {
12         public delegate void Factory (object data, object fail);
13 }