blob: b608fbce038f598267a441024c38809e47b02ad7 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Wunused-variable -Wunused-const-variable" } */
static int a = 0; /* { dg-warning "defined but not used" } */
static const int b = 0; /* { dg-warning "defined but not used" } */
static int c __attribute__ ((unused)) = 0;
static const char rcsid[] __attribute__ ((unused)) = "version-string";