repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0067-2.cs
blob
7a2a83194c0de5d199659d42ebd72c063d3b5453
1
// CS0067: The event `Foo.OnFoo' is never used
2
// Line: 12
3
// Compiler options: -warnaserror -warn:3
4
5
using
System
;
6
7
class
Foo
8
{
9
public event
FooHandler OnFoo
;
10
public delegate void
FooHandler
();
11
12
public static void
Main
()
13
{
14
}
15
}
16