aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/unused-9.c
blob: ad1ad0ec8abc14506477eea983bb3ae0fe3e0fea (plain)
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++);
}