[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Sema / attr-used.c
bloba3414c956beb307cee53181315c9bff3611905e2
1 // RUN: %clang_cc1 -verify -fsyntax-only -Wno-private-extern %s
3 extern int l0 __attribute__((used)); // expected-warning {{'used' attribute ignored on a non-definition declaration}}
4 __private_extern__ int l1 __attribute__((used)); // expected-warning {{'used' attribute ignored on a non-definition declaration}}
6 struct __attribute__((used)) s { // expected-warning {{'used' attribute only applies to variables with non-local storage, functions, and Objective-C methods}}
7 int x;
8 };
10 int a __attribute__((used));
12 static void __attribute__((used)) f0(void) {
15 void f1(void) {
16 static int a __attribute__((used));
17 int b __attribute__((used)); // expected-warning {{'used' attribute only applies to variables with non-local storage, functions, and Objective-C methods}}
20 static void __attribute__((used)) f0(void);