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-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs1017.cs
blob
db2f76e67affc34b39379141e2d2ef1d3767ff4e
1
// cs1017.cs: Try statement already has an empty catch block
2
// Line: 8
3
4
class
ClassMain
{
5
public static void
Main
() {
6
try
{ }
7
catch
{}
8
catch
(
System
.
Exception
)
{ }
9
}
10
}