xref: /llvm-project/clang/test/PCH/local_static.h (revision a683f639c7e24408409c6d07979ba171e2581653)
1 class Bar {
2 public:
3   template<typename T>
f()4   void f() {
5     static const T y = 0;
6   }
7 };
8