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
/
gtest-lambda-26.cs
blob
30d56ba8f580d4058e44bed10fbf08689a72ad80
1
using
System
;
2
3
class
C
4
{
5
public static void
Main
()
6
{
7
Execute
(() => {
8
int
a
,
b
;
9
});
10
}
11
12
public static void
Execute
(
Action action
)
{ }
13
}