2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / Wunreachable-5.c
blob11dc3204da1178b4c93b911d085112abc9c94ab5
1 /* PR c/10175 */
3 /* { dg-do compile } */
4 /* { dg-options "-Wunreachable-code" } */
6 int value;
8 int main(void)
10 if (0)
11 value = 0; /* { dg-warning "will never be executed" "" } */
12 else
13 value = 1;
15 return 0;