Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0074.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6001814b8570cb0e82806863aba5e9c7867657e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0074.cs: Abstracts events can't have initializers.
// Line: 8

using System;

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