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