Clang Project

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