blob: 71830cdab036d3c3a4961737eb14210a35735ec9 [file] [log] [blame]
// { dg-do compile { target c++14 } }
struct A
{
A(int);
};
struct B
{
A a{42};
};
B f() { return {}; }