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 #15293 from lewing/wasm-clean
[mono-project.git]
/
mcs
/
tests
/
test-anon-15.cs
blob
9a865b1e8894b73589797bc005e57bc6fe9b63b9
1
public class
Foo
{
2
delegate
Inner
foo_fn
(
string
s
);
3
public static void
Main
()
4
{
5
foo_fn f
=
delegate
(
string
s
) {
6
return new
Inner
(
s
+
s
);
7
};
8
f
(
"Test"
);
9
}
10
11
class
Inner
12
{
13
public
Inner
(
string
s
)
14
{ }
15
}
16
}