Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / lambda-generic-variadic20.C
blob3af971bbf1203e49b7950617413798682e27a549
1 // PR c++/90448
2 // { dg-do compile { target c++14 } }
4 template<class ... Ts> int fooV(Ts ... ts) {
5   auto L = [](auto ... a) {
6     auto M = [](decltype(a) ... b) -> void {
7     };
8     return M;
9   };
11   decltype(L(L, ts...)) (*fp)(decltype(L), decltype(ts) ...) = L;
13   return 0;
16 int run2 = fooV("BC", 3, 2.77, 'A', float{}, short{}, unsigned{});