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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0162-12.cs
blob
5215e44c714aae42dc11acb7a53c0869759f963f
1
// CS0162: Unreachable code detected
2
// Line: 11
3
// Compiler options: -warnaserror -warn:2
4
5
public class
Test
6
{
7
public static void
Main
()
8
{
9
return
;
10
11
Test testStr
;
12
return
;
13
}
14
}