aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/eh/ctor3.C
blob: 378c07edf17f4b55e168a71375fb66a0c6402aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;
}