blob: 378c07edf17f4b55e168a71375fb66a0c6402aa9 [file] [log] [blame]
// PR C++/18984
// We just to ICE as we did not add a
// deference to invisible by reference
// variable
// { dg-do compile }
struct Str
{
Str(const char *chars);
Str& operator=(const char *chars);
virtual operator char*() const;
};
Str _localName(Str fullname)
{
return (char*)fullname;
}