2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / dce1.C
blobf4de52257bcba5ffbe4389a30ad5bb775627e873
1 /* Make sure that dead code isn't eliminated too early, avoiding 
2    detection of errors.  */
3 /* { dg-do compile } */
5 void foo(void)
7   if (0)
8     break;              /* { dg-error "" } */
9   if (1)
10     ;
11   else
12     continue;           /* { dg-error "" } */