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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
gtest-337.cs
blob
d9a77f397dff6b9feed14f281c6fbcddceb2cef3
1
2
3
using
System
;
4
5
class
X
{
6
static void
SetValue
<
T
> (
object
o
,
T x
)
7
{
8
}
9
10
static void
Main
()
11
{
12
object
o
=
null
;
13
double
[]
d
=
null
;
14
15
SetValue
(
o
,
d
);
16
}
17
}