blob: 11b090dfc5475c32f623153e48ab279369c7ad78 [file] [log] [blame]
// PR c++/22434
struct A
{
A(void*);
~A();
};
void foo(const int i, bool b)
{
b ? A(0) : i; // { dg-error "" }
}