[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0069.cs
blob70511c3c96d37e052206075fecce39777d0de9c4
1 // CS0069: Event in interface cannot have add or remove accessors
2 // Line: 13
4 using System;
6 public delegate void FooHandler ();
8 interface IBar {
9 event FooHandler OnFoo {
10 add { }
11 remove { }