[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs3005-5.cs
blobee1489471d6bb85e77dff405beca5bced6384e6a
1 // CS3005: Identifier `CLSClass.Event_A' differing only in case is not CLS-compliant
2 // Line: 13
3 // Compiler options: -warnaserror
5 [assembly:System.CLSCompliant(true)]
7 public delegate void MyDelegate(int i);
9 public class Base {
10 protected event System.ResolveEventHandler Event_a;
13 public class CLSClass: Base {
14 public event MyDelegate Event_A;