[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0108-17.cs
blob345ba7ff60c8427ffa2af4a15b83b530b408720d
1 // CS0108: `Derived.Action<U>' hides inherited member `Base.Action<U>'. Use the new keyword if hiding was intended
2 // Line: 12
3 // Compiler options: -warnaserror
5 public abstract class Base
7 public delegate void Action<U> (U val);
10 public class Derived : Base
12 public delegate void Action<U> (U i);