(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / syntax0069.cs
blobdfbe7fc3094559abdff0f787de951a6b411cf87a
1 // cs0069.cs: Event cannot have add or remove accessors in an interface.
2 // Line: 13
4 using System;
6 class ErrorCS0069 {
7 public delegate void FooHandler ();
8 public static void Main () {
12 interface IBar {
13 event OnFoo {
14 add { }
15 remove { }