xref: /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/attr-used.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s
2f4a2713aSLionel Sambuc 
3*0a6a1f1dSLionel Sambuc extern char test1[] __attribute__((used)); // expected-warning {{'used' attribute ignored}}
4*0a6a1f1dSLionel Sambuc extern const char test2[] __attribute__((used)); // expected-warning {{'used' attribute ignored}}
5f4a2713aSLionel Sambuc extern const char test3[] __attribute__((used)) = "";
6