[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0108-14.cs
blobc37ee28d2fda792bf8aea1c99c236bc8e2464295
1 // CS0108: `B.D' hides inherited member `A.D'. Use the new keyword if hiding was intended
2 // Line: 15
3 // Compiler options: -warnaserror -warn:2
5 public class B : A
7 public delegate void D ();
10 public class A
12 public int D;