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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1058-1.cs
blob
e95c83b9b22235d57b788538b893d939bf4bf449
1
// CS1058: A previous catch clause already catches all exceptions. All non-exceptions thrown will be wrapped in a `System.Runtime.CompilerServices.RuntimeWrappedException'
2
// Line: 11
3
// Compiler options: -warnaserror -warn:4
4
5
class
C
6
{
7
static void
Main
()
8
{
9
try
{}
10
catch
(
System
.
Exception
)
{ }
11
catch
{}
12
}
13
}
14