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
/
cs1660-2.cs
blob
82a819b1078e269e8c4617ca1398fbb2266a9a5c
1
// CS1660: Cannot convert `anonymous method' to non-delegate type `int'
2
// Line: 9
3
4
using
System
;
5
6
class
X
{
7
static void
Main
()
8
{
9
int
o
=
delegate
{};
10
}
11
}