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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0029-10.cs
blob
21f0dd1aa903caeefe362fdf383f0e23728f5e93
1
// CS0029: Cannot implicitly convert type `void' to `System.EventHandler'
2
// Line: 14
3
4
class
C
5
{
6
static event
System
.
EventHandler ev
7
{
8
add
{ }
9
remove
{ }
10
}
11
12
static void
Main
()
13
{
14
ev
+=
ev
+=
null
;
15
}
16
}