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
Add Mono.Runtime::GetNativeStackTrace method to make the new backtracing facility...
[mono-project.git]
/
mcs
/
tests
/
test-anon-04.cs
blob
50985f4fb2bee92ed3d2a906c97000cda74f93fc
1
//
2
// Capturing test.
3
//
4
using
System
;
5
6
delegate void
S
();
7
8
class
X
{
9
static void
Main
()
10
{
11
int
a
=
1
;
12
S b
=
delegate
{
13
float
f
=
1
;
14
Console
.
WriteLine
(
a
);
15
if
(
f
==
2
)
16
return
;
17
};
18
b
();
19
Console
.
WriteLine
(
"Back, got "
+
a
);
20
}
21
}