fix run-test
[mcs.git] / errors / cs0071-3.cs
blob721952b1e42833a1f7cfa7d7b4b22b3f5b1ada0b
1 // CS0071: `Test.IBlah.Foo': An explicit interface implementation of an event must use property syntax
2 // Line: 14
4 using System;
6 delegate void Delegate ();
8 interface IBlah
10 event Delegate Foo;
13 class Test : IBlah {
14 event Delegate IBlah.Foo;
16 public static void Main ()