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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-696.cs
blob
1ef255eb7c27111d09cbebd64c343e153c1a404b
1
struct
S
{
2
public static implicit operator
S
(
C c
)
{ S s; return s; }
3
public static void
f
(
S s
)
{ }
4
}
5
6
class
C
{
7
public static void
Main
()
{ S.f (null); }
8
}