X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0071-3.cs;h=721952b1e42833a1f7cfa7d7b4b22b3f5b1ada0b;hb=233bbcaaa3aa9f100ef6266236bf0b5a32b49a65;hp=f8194665989112533bda23c4434009ce80003bc7;hpb=93703b4ef8bdcf1d6cf336e14f534454221730c5;p=mono.git diff --git a/mcs/errors/cs0071-3.cs b/mcs/errors/cs0071-3.cs index f8194665989..721952b1e42 100644 --- a/mcs/errors/cs0071-3.cs +++ b/mcs/errors/cs0071-3.cs @@ -1,15 +1,17 @@ -// cs0071-3.cs: An explicit interface implementation of an event must use property syntax -// Line: 12 +// CS0071: `Test.IBlah.Foo': An explicit interface implementation of an event must use property syntax +// Line: 14 using System; +delegate void Delegate (); + interface IBlah { event Delegate Foo; } class Test : IBlah { - event MyEvent ITest.Foo; + event Delegate IBlah.Foo; public static void Main () {