repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
DiffLoader didn't handle encoded name and caused mismatch between .NET.
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-458.cs
blob
045b9936fd5d20fbc4c41191831098a7607d6a5d
1
public class
MyList
<
T
>
2
{
3
public class
Helper
<
U
,
V
>
{ }
4
5
public
Helper
<
U
,
V
>
GetHelper
<
U
,
V
> ()
6
{
7
return null
;
8
}
9
}
10
11
class
C
12
{
13
public static int
Main
()
14
{
15
new
MyList
<
int
> ().
GetHelper
<
string
,
bool
> ();
16
return
0
;
17
}
18
}