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
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-696.cs
blob
227308384a1d58581669412fd363184e5affa6ff
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
static void
Main
()
{ S.f (null); }
8
}