Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / constexpr-assign1.C
blob4583b64e3afc925e31957b289df977ad540674ec
1 // { dg-do compile { target c++14 } }
3 struct A { };
5 struct B
7   A a;
8   constexpr B& operator=(const B&) = default;
9 };