[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / Inputs / PR27699 / streambuf
blob30ea73d230d156c116bd88b5397b01c708b43734
1  #ifndef STREAMBUF
2  #define STREAMBUF
3  template <typename> struct basic_streambuf {
4   basic_streambuf(const basic_streambuf &);
5   };
6 template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default;
7 #endif