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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-406.cs
blob
0d7f6089d7ee2a63f2fb6fa6a9eb31de4ca6d1c4
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
class
Test
<
T
>
5
{
6
public void
Foo
<
TOutput
> (
Func
<
T
,
TOutput
>
converter
)
7
{
8
}
9
}
10
11
public class
C
<
A
,
B
>
12
{
13
public
C
(
IEnumerable
<
B
>
t
)
14
{
15
new
Test
<
B
> ().
Foo
(
a
=>
a
);
16
}
17
}
18
19
class
M
20
{
21
public static void
Main
()
22
{
23
}
24
}