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-lambda-16.cs
blob
c3b86300b487d0da5d2318017c58c14eceacc090
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
class
Repro
5
{
6
class
Runner
<
T
>
7
{
8
public
Runner
(
Action
<
T
>
action
,
T t
)
{ }
9
}
10
11
static void
AssertFoo
<
T
> (
IList
<
T
>
list
)
12
{
13
new
Runner
<
int
> (
delegate
{
14
foreach
(
T item
in
list
)
{ }
15
},
42
);
16
}
17
18
public static void
Main
()
19
{
20
}
21
}