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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
dtest-059.cs
blob
b57b8d29f855b667235e973d27717166cef1d3aa
1
using
System
;
2
3
class
X
4
{
5
public static void
Main
()
6
{
7
new
C
<
int
> ().
Test
();
8
}
9
}
10
11
class
C
<
T
>
12
{
13
public void
Test
()
14
{
15
dynamic
d
=
null
;
16
17
int
v
;
18
int
.
TryParse
(
d
,
out
v
);
19
20
int
.
TryParse
(
d
,
out
v
);
21
}
22
}