repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-674.cs
blob
300efac7264689bdf407512629679beb527d41af
1
using
System
;
2
3
public class
Test
4
{
5
delegate int
D
(
int
i
);
6
7
public static int
Main
()
8
{
9
object
o
= (
D
)
delegate
{ return 0; }
;
10
((
D
)
o
)(
1
);
11
return
((
D
)
o
)(
1
);
12
}
13
}