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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0155-3.cs
blob
c10dce4dc5b5311ce2fb6a132bad2af6b590c7e8
1
// CS0155: The type caught or thrown must be derived from System.Exception
2
// Line: 9
3
4
class
Test
5
{
6
public static void
Main
()
7
{
8
try
{}
9
catch
(
int
[]) {}
10
}
11
}
12