blob: 7a2a83194c0de5d199659d42ebd72c063d3b5453 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0067: The event `Foo.OnFoo' is never used
// Line: 12
// Compiler options: -warnaserror -warn:3
using System;
class Foo
{
public event FooHandler OnFoo;
public delegate void FooHandler ();
public static void Main ()
{
}
}
|