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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1660-2.cs
blob
1d5e927d23e2d8ae97993d5953d32ae9bbe24980
1
// cs1660-2.cs: Cannot convert anonymous method block to type `int' because it is not a delegate type
2
// Line: 9
3
4
using
System
;
5
6
class
X
{
7
static void
Main
()
8
{
9
int
o
=
delegate
{};
10
}
11
}