2018-01-10 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / unused-variable-1.c
blobcb86c3bc8d26a82ef35d63ec28b7b2f81d055241
1 /* { dg-do compile } */
2 /* { dg-options "-Wunused-variable" } */
4 static int a = 0; /* { dg-warning "defined but not used" } */
5 static const int b = 0; /* { dg-warning "defined but not used" } */
6 static int c __attribute__ ((unused)) = 0;
7 static const char rcsid[] __attribute__ ((unused)) = "version-string";