[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0108-15.cs
blob4584b10cf22dfcb951a5183c4fb8a40c008a7efd
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
5 public abstract class A
7 public void Factory (object data) { }
10 public class B : A
12 public delegate void Factory (object data, object fail);