Files
clang-p2996/clang/test/SemaCXX/attr-visibility.cpp
Nico Weber ecc969caf9 Revert r359814 "[Sema] Emit warning for visibility attribute on internal-linkage declaration"
See cfe-commits thread for r359814.

llvm-svn: 359858
2019-05-03 03:16:07 +00:00

21 lines
518 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
template <class Element>
void foo() {
}
template <>
__attribute__((visibility("hidden"))) // expected-note {{previous attribute is here}}
void foo<int>();
template <>
void foo<int>();
template <>
__attribute__((visibility("default"))) // expected-error {{visibility does not match previous declaration}}
void foo<int>() {
}
struct x3 {
static int y;
} __attribute((visibility("default"))); // expected-warning {{attribute 'visibility' after definition is ignored}}