aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/unused-9.c
blob: bdf36e1f50e83eadaa1352fdc5bd1d1b5f7096d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR c/98260 */
/* { dg-do compile } */
/* { dg-options "-Wunused" } */


void g(void)
{
  int i = 0;
  volatile int x;
  (x, i++);	/* { dg-bogus "set but not used" } */
}