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

cs0067.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f7d2dea127f449f1d45ca9f9c811d20ca716966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0067.cs: The event is never used.
// Line: 12
// Compiler options: -warnaserror -warn:4

using System;

class ErrorCS0067 {
	public delegate void FooHandler ();
}

class Foo {
	public event ErrorCS0067.FooHandler OnFoo;
	
	public static void Main () {
	}
}