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
/
dtest-060.cs
blob
ee6d9b9f7473c69f24776e81d1eab5a25891dd03
1
namespace
Test
2
{
3
public class
Program
4
{
5
public static int
Main
()
6
{
7
dynamic
d
=
0L
;
8
return
C
.
M
<
Program
> (
d
);
9
}
10
}
11
12
public class
C
13
{
14
public static int
M
<
T
> (
int
i
)
where T
:
C
15
{
16
return
1
;
17
}
18
19
public static int
M
<
T
> (
long
l
)
20
{
21
return
0
;
22
}
23
}
24
}