bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/PR27699/streambuf
2025-02-14 19:21:04 +01:00

7 lines
234 B
Text

#ifndef STREAMBUF
#define STREAMBUF
template <typename> struct basic_streambuf {
basic_streambuf(const basic_streambuf &);
};
template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default;
#endif