brintos

brintos / llvm-project-archived public Read only

0
0
Text · 194 B · 434b3c0 Raw
13 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only %s2 3namespace test1 {4  template <class C>5  struct C26  {7    static int p __attribute__((visibility("hidden")));8  };9  int f() {10    return C2<int>::p;11  }12}13