* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0071-3.cs
1 // cs0071-3.cs: An explicit interface implementation of an event must use property syntax
2 // Line: 12
3
4 using System;
5
6 interface IBlah
7 {
8         event Delegate Foo;
9 }
10
11 class Test : IBlah {
12         event MyEvent ITest.Foo;
13
14         public static void Main ()
15         {
16         }
17 }