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
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
test-anon-98.cs
blob
7c9d32b3c775d43c128ffb70d4c27c0b41def3c1
1
using
System
;
2
3
class
Foo
4
{
5
~
Foo
()
6
{
7
int
x
=
1
;
8
Action a
= () =>
Console
.
WriteLine
(
"
{0}
"
,
x
);
9
}
10
11
public static void
Main
()
12
{
13
new
Foo
();
14
}
15
}