blob: 434b3c06c1c5350b4f9016c2d0d8fd10ddf5a2d3 [file] [log] [blame]
Rafael Espindolaef3c6942013-01-08 14:58:32 +00001// RUN: %clang_cc1 -fsyntax-only %s
2
3namespace test1 {
4 template <class C>
5 struct C2
6 {
7 static int p __attribute__((visibility("hidden")));
8 };
9 int f() {
10 return C2<int>::p;
11 }
12}