summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0074.cs
blob: d5bd2555ccd973ebb7f152e30a990c4510c813af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0074: `ErrorCS0074.OnFoo': abstract event cannot have an initializer
// Line: 8

using System;

abstract class ErrorCS0074 {
	public delegate void Handler ();
	public abstract event Handler OnFoo = null;
	public static void Main () {
	}
}