blob: 0ea9cfc1a0c80c63d7268a75131d0b0d77fa415f [file] [log] [blame]
/* { dg-do compile } */
inline void *operator new (__SIZE_TYPE__, void *__p) throw ()
{
return __p;
}
struct A
{
A(int, double);
inline explicit A (int pattern, bool cs)
{
new (this) A (pattern, double(cs));
}
};
A test ()
{
const A a (42, true);
return a;
}