[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0071.cs
blobf39c9e9455397936a97a4b89f2d6eed56c2ffa02
1 // CS0071: `ErrorCS0071.IFoo.OnFoo': An explicit interface implementation of an event must use property syntax
2 // Line: 13
4 using System;
6 public delegate void Foo (object source);
8 interface IFoo {
9 event Foo OnFoo;
12 class ErrorCS0071 : IFoo {
13 event Foo IFoo.OnFoo;