xref: /llvm-project/clang/test/Modules/Inputs/PR27699/streambuf (revision 462a5328ddd6ee7612911ea6f91da40ed3d994f4)
1 #ifndef STREAMBUF
2 #define STREAMBUF
3 template <typename> struct basic_streambuf {
4  basic_streambuf(const basic_streambuf &);
5  };
6template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default;
7#endif
8