blob: b21ca98e2797e3cdfa448e688c547e3911c45e80 [file] [log] [blame]
// Core 1560
// { dg-do compile { target c++14 } }
struct A
{
A();
A(const A&) = delete;
};
void f(bool b)
{
A a;
b ? a : throw 42;
}