blob: 0143290a67fffdc9287ccbd6e69de0919812b241 [file] [log] [blame]
// Build don't link:
template <class charT>
struct basic_string
{
charT append (charT c)
{ return c; }
};
typedef char c;
template class basic_string <char>;