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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
test-900.cs
blob
b0e4b0a3da638daa06b19abe1f9495187072222c
1
using
System
;
2
3
class
D
4
{
5
public static implicit operator
D
(
Action d
)
6
{
7
return new
D
();
8
}
9
}
10
11
class
Program
12
{
13
static void
Main
()
14
{
15
D d
= (
D
)
Main
;
16
}
17
}