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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0156-2.cs
blob
b487c753cb08b3832e347e273f4c25667d9745cf
1
// CS0156: A throw statement with no arguments is not allowed outside of a catch clause
2
// Line: 14
3
4
using
System
;
5
6
class
Foo
7
{
8
static void
Main
()
9
{
10
try
{
11
Console
.
WriteLine
(
"TEST"
);
12
}
13
finally
{
14
throw
;
15
}
16
}
17
}