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
[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git]
/
mcs
/
tests
/
test-anon-145.cs
blob
ba7f33e7f99122451108848c0d9bb68d2a01b34a
1
using
System
;
2
3
public class
C
4
{
5
public static int
Main
()
6
{
7
new
C
().
AnyMethod
<
int
> ();
8
return
0
;
9
}
10
11
public void
AnyMethod
<
T
> ()
12
{
13
Action outerAction
= () => {
14
string
aString
=
"aString"
;
15
Action
<
string
>
innerAction
=
innerActionParam
=>
innerActionParam
.
Contains
(
aString
);
16
};
17
18
outerAction
();
19
}
20
}