1 /* { dg-do compile } */
2 /* { dg-options "-w -std=c99" } */
3 int i;
4 void
f(void)5 f (void)
6 {
7   i = (1 / 0, 1 / 0);
8 }
9