blob: 9e67eb34174faf07ffbba806c0445abb218670ac [file] [log] [blame]
// PR c++/53356
struct A { A(); ~A(); };
struct B {
operator const A () const;
};
A* cause_ICE() {
return new A((A(),A()));
}