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
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-512.cs
blob
a49036fd2ec5e044a1e43982a6b6275923930809
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
}