Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug-1406131.c
1 /* bug-1406131.c
2
3    always false while-loop
4 */
5 #include <testfwk.h>
6
7 void
8 testwhile(void)
9 {
10   do
11     ;
12   while (0);
13   
14   while (0)
15     ;
16   
17   for (; 0; )
18     ;
19 }