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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-685.cs
blob
033af02650fdcdb3c8936a8b52e67a7cfec9a1b7
1
// Compiler options: -warnaserror
2
3
// Checks redundant CS0642 warning
4
5
public class
C
6
{
7
public static void
Main
()
8
{
9
int
v
;
10
for
(
v
=
1
;
v
>=
0
;
v
--) ;
11
uint
[]
b
=
null
;
12
if
(
b
!=
null
)
13
return
;
14
}
15
}