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