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-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-376.cs
blob
fd78b6c1ba553fdc893279ecae300acbca2493ae
1
using
System
;
2
3
struct
S
<
T
>
where T
:
struct
4
{
5
static object
Box
(
T
?
o
)
6
{
7
if
(
o
==
null
)
8
return null
;
9
return
(
T
)
o
;
10
}
11
}
12
13
class
C
14
{
15
public static void
Main
()
16
{
17
}
18
}