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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0162-6.cs
blob
a7b1a3ade55c19f211f8707d89577be816e12d19
1
// CS0162: Unreachable code detected
2
// Line: 9
3
// Compiler options: -warnaserror -warn:2
4
5
class
Foo
{
6
static void
Main
()
7
{
8
goto
skip
;
9
a
:
10
throw new
System
.
Exception
();
11
goto
a
;
12
skip
:
13
return
;
14
}
15
}