OSDN Git Service

PR fortran/29459
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / unreachable1.C
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 }