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
Warnings cleanup
[mcs.git]
/
errors
/
gcs0069.cs
blob
b7ba89c76129174bc59293f042342bc9c7c70a2c
1
// CS0069: Event in interface cannot have add or remove accessors
2
// Line: 11
3
4
using
System
;
5
6
public delegate void
FooHandler
();
7
8
interface
IBar
<
T
>
9
{
10
event
FooHandler OnFoo
{
11
remove
{ }
12
}
13
}
14