[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Sema / attr-warning.c
blob0973f3c8eb4bd76b8bb5ec3a59b233e2e2436d6a
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 #if !__has_attribute(warning)
3 #warning "warning attribute missing"
4 #endif
6 __attribute__((warning("don't call me!"))) int good0(void);
8 __attribute__((warning)) // expected-error {{'warning' attribute takes one argument}}
9 int
10 bad0(void);
12 int bad1(__attribute__((warning("bad1"))) int param); // expected-error {{'warning' attribute only applies to functions}}
14 int bad2(void) {
15 __attribute__((warning("bad2"))); // expected-error {{'warning' attribute cannot be applied to a statement}}
18 __attribute__((warning(3))) // expected-error {{'warning' attribute requires a string}}
19 int
20 bad3(void);
22 __attribute__((warning("foo"), warning("foo"))) int good1(void);
23 __attribute__((warning("foo"))) int good1(void);
24 __attribute__((warning("foo"))) int good1(void) {}
26 __attribute__((warning("foo"), error("foo"))) // expected-error {{'error' and 'warning' attributes are not compatible}}
27 int
28 bad4(void);
29 // expected-note@-3 {{conflicting attribute is here}}
32 * Note: we differ from GCC here; rather than support redeclarations that add
33 * or remove this fn attr, we diagnose such differences.
36 void foo(void); // expected-note {{previous declaration is here}}
37 __attribute__((warning("oh no foo"))) void foo(void); // expected-error {{'warning' attribute does not appear on the first declaration}}