1 // { dg-do compile { target c++14 } }
2 
3 struct A { };
4 
5 struct B
6 {
7   A a;
8   constexpr B& operator=(const B&) = default;
9 };
10