2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0071-3.cs
blobf8194665989112533bda23c4434009ce80003bc7
1 // cs0071-3.cs: An explicit interface implementation of an event must use property syntax
2 // Line: 12
4 using System;
6 interface IBlah
8 event Delegate Foo;
11 class Test : IBlah {
12 event MyEvent ITest.Foo;
14 public static void Main ()