Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0071-3.cs
1 // CS0071: `Test.IBlah.Foo': An explicit interface implementation of an event must use property syntax
2 // Line: 14
3
4 using System;
5
6 delegate void Delegate ();
7
8 interface IBlah
9 {
10         event Delegate Foo;
11 }
12
13 class Test : IBlah {
14         event Delegate IBlah.Foo;
15
16         public static void Main ()
17         {
18         }
19 }