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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1660.cs
blob
3b8a01b9ff4aac47b50e6d9680e9cddd1eddbae7
1
// CS1660: Cannot convert `anonymous method' to non-delegate type `object'
2
// Line: 9
3
4
using
System
;
5
6
class
X
{
7
static void
Main
()
8
{
9
object
o
=
delegate
{};
10
}
11
}