1 // { dg-do compile { target c++14 } }
2 
3 struct A
4 {
5   A(int);
6 };
7 
8 struct B
9 {
10   A a{42};
11 };
12 
f()13 B f() { return {}; }
14