llvm-project/clang/test/SemaCXX/visibility.cpp
Rafael Espindola ef5ea1df4e Clear the LV cache when setting the instantiated from link.
Fixes pr14835.

llvm-svn: 171857
2013-01-08 14:58:32 +00:00

13 lines
194 B
C++

// RUN: %clang_cc1 -fsyntax-only %s
namespace test1 {
template <class C>
struct C2
{
static int p __attribute__((visibility("hidden")));
};
int f() {
return C2<int>::p;
}
}