(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0073.cs
blobb2793dffc3cc8bd48923d5f2f7d5585e2ea9c63d
1 // cs0073.cs: An add or remove accessor must have a body.
2 // Line: 9
4 using System;
6 class ErrorCS0073 {
7 delegate void Handler ();
8 event Handler OnFoo {
9 add;
10 remove {
11 OnFoo -= value;
14 public static void Main () {