| // RUN: %clang_cc1 -fblocks -fsyntax-only -Wunused-but-set-variable -verify %s |
| int y; // expected-warning{{variable 'y' set but not used}} |
| int z __attribute__((unused)); |
| struct S s; // expected-warning{{variable 's' set but not used}} |
| // Don't warn for an extern variable. |
| // Following gcc, this should not warn. |
| // Following gcc, warn for a volatile variable. |
| volatile int b; // expected-warning{{variable 'b' set but not used}} |
| int y; // expected-warning{{variable 'y' set but not used}} |
| // Don't warn, even if it's only used in a non-ODR context. |