(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0071.cs
blob2ebccf4c67c77f35cd96eadf27213db833a8cb98
1 // cs0071.cs: An explicit implementation of an event must use property syntax.
2 // Line: 13
4 using System;
6 public delegate void Foo (object source);
8 interface IFoo {
9 event Foo OnFoo;
12 class ErrorCS0071 : IFoo {
13 event Foo IFoo.OnFoo () { }
14 public static void Main () {