[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / eh / ctor3.C
blob378c07edf17f4b55e168a71375fb66a0c6402aa9
1 // PR C++/18984
2 //  We just to ICE as we did not add a
3 // deference to invisible by reference 
4 // variable
6 // { dg-do compile }
9 struct Str
11     Str(const char *chars);
12     Str& operator=(const char *chars);
13     virtual operator char*() const;
15 Str _localName(Str fullname)
17   return (char*)fullname;