blob: 28715141b995f576678d383a1f9223be6fe27491 [file] [log] [blame]
John McCallaec58602010-03-31 02:47:45 +00001// RUN: %clang_cc1 -verify -Wunused-variable -fsyntax-only %s
Daniel Dunbard3f2c102008-10-19 02:04:16 +00002
3static void (*fp0)(void) __attribute__((unused));
4
5static void __attribute__((unused)) f0(void);
6
7// On K&R
8int f1() __attribute__((unused));
9
10int g0 __attribute__((unused));
11
12int f2() __attribute__((unused(1, 2))); // expected-error {{attribute requires 0 argument(s)}}
John McCallaec58602010-03-31 02:47:45 +000013
14struct Test0_unused {} __attribute__((unused));
15struct Test0_not_unused {};
16typedef int Int_unused __attribute__((unused));
17typedef int Int_not_unused;
18
19void test0() {
20 int x; // expected-warning {{unused variable}}
21
22 Int_not_unused i0; // expected-warning {{unused variable}}
23 Int_unused i1;
24
25 struct Test0_not_unused s0; // expected-warning {{unused variable}}
26 struct Test0_unused s1;
27}