1 2 3 4 5 6 7 8 9 10
/* PR c/98260 */ /* { dg-do compile } */ /* { dg-options "-Wunused" } */ void g(void) { int i = 0; /* { dg-warning "variable 'i' set but not used" } */ volatile int x; /* { dg-bogus "variable 'x' set but not used" } */ (x, i++); }