bolt/deps/llvm-18.1.8/clang/test/SemaCXX/attr-used.cpp

6 lines
353 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
extern char test1[] __attribute__((used)); // expected-warning {{'used' attribute ignored on a non-definition declaration}}
extern const char test2[] __attribute__((used)); // expected-warning {{'used' attribute ignored on a non-definition declaration}}
extern const char test3[] __attribute__((used)) = "";