blob: cbb64df75629cb156e6d66b3f872c52081d9f4f8 [file] [log] [blame]
// PR 99389 failed to stream class specialization
// { dg-module-do link }
// { dg-additional-options "-fmodule-header" }
// { dg-module-cmi {} }
template<typename _CharT>
class basic_string_view
{
public:
basic_string_view(const _CharT* __str) noexcept
{}
bool
empty() const noexcept
{ return !_M_len; }
private:
unsigned _M_len;
};
using string_view = basic_string_view<char>;