repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0429-2.cs
blob
7d9423ea4c777112293e1c5907cc0084c77f443b
1
// cs0429.cs: Unreachable expression code detected
2
// Line: 11
3
// Compiler options: -warn:4 -warnaserror
4
5
using
System
;
6
7
class
Main
8
{
9
public void
Method
(
int
i
)
10
{
11
if
(
5
==
5
||
i
>
10
)
12
Console
.
WriteLine
(
"TEST"
);
13
}
14
}