repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
unreachable1.C
blob
da468a099f63d4a6ed33b5d2a74ea8553b8e0282
1
// PR middle-end/17827
2
// Origin: Andre Woebbeking <Woebbeking@web.de>
3
// Testcase by Volker Reichelt <reichelt@gcc.gnu.org>
4
// { dg-do compile }
5
6
void foo()
7
{
8
if (false)
9
if (int i=0)
10
int j=i;
11
}