repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-511.cs
blob
8002d4acb5ee55f792555d591f4a5f6a6d2efd85
1
using
System
;
2
3
public class
Foo
{
4
public static void
Main
(
string
[]
args
)
5
{
6
try
{
7
f
();
8
}
9
catch
{}
10
}
11
12
static void
f
()
13
{
14
throw new
Exception
();
15
string
hi
;
16
try
{ }
17
finally
{
18
Console
.
WriteLine
(
"hi =
{0}
"
,
hi
);
19
}
20
}
21
}