Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0071-3.cs
index f8194665989112533bda23c4434009ce80003bc7..721952b1e42833a1f7cfa7d7b4b22b3f5b1ada0b 100644 (file)
@@ -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 ()
        {