With these new tests (73-79) we have completed the tests from CS0001 to
[mono.git] / mcs / errors / cs0074.cs
1 // cs0074.cs: Abstracts events can't have initializers.
2 // Line: 8
3
4 using System;
5
6 abstract class ErrorCS0074 {
7         delegate void Handler ();
8         public abstract event Handler OnFoo = null;
9         public static void Main () {
10         }
11 }
12