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