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