llvm-for-llvmta/tools/clang/test/Modules/Inputs/PR27699/streambuf

8 lines
234 B
Plaintext
Raw Normal View History

2022-04-25 13:02:35 +02:00
#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