blob: fff53fa90dce4374a4e12e8459bd0c8caf3147cc [file] [log] [blame]
// { dg-do assemble }
template <class charT>
struct basic_string
{
charT append (charT c)
{ return c; }
};
typedef char c;
template class basic_string <char>;