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
2009-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1609.cs
blob
58a219a5c37d9a9e5bd5cdb08345eab4253444ac
1
// CS1609: Modifiers cannot be placed on event accessor declarations
2
// Line: 9
3
4
delegate int
d
();
5
6
class
C
7
{
8
public event
d E
{
9
private add
{}
10
remove
{}
11
}
12
}