repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0179-2.cs
blob
17d74a7ea74c390867497d09ce0720b8b7486060
1
// CS0179: `Bar.OnFoo.add' cannot declare a body because it is marked extern
2
// Line: 9
3
4
using
System
;
5
6
public delegate void
FooHandler
();
7
8
class
Bar
{
9
extern event
FooHandler OnFoo
{
10
add
{ }
11
remove
{ }
12
}
13
}
14