repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0155.cs
blob
06e0cf4169feda53d9ad3d2dd9b228d611aa3fb1
1
// CS0155: The type caught or thrown must be derived from System.Exception
2
// Line: 7
3
class
X
{
4
static void
Main
()
5
{
6
int
a
=
9
;
7
throw
a
;
8
}
9
}