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
bring XslCompiledTransform to MonoTouch
[mcs.git]
/
errors
/
cs0067.cs
blob
f3cd3ca9cac3dbd996aa22f82815850e5247c555
1
// cs0067: The event `Foo.OnFoo' is never used
2
// Line: 12
3
// Compiler options: -warnaserror -warn:4
4
5
using
System
;
6
7
class
ErrorCS0067
{
8
public delegate void
FooHandler
();
9
}
10
11
class
Foo
{
12
private event
ErrorCS0067
.
FooHandler OnFoo
;
13
14
public static void
Main
() {
15
}
16
}
17