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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0162-13.cs
blob
f4e8ad608f4df849c08f6567aa02760f80622544
1
// CS0162: Unreachable code detected
2
// Line: 10
3
// Compiler options: -warnaserror -warn:2
4
5
class
C
6
{
7
static int
Main
()
8
{
9
while
(!
new bool
{});
10
return
1
;
11
}
12
}