Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / lambda-defarg7.C
blobf67dfee8fdf2e16735b94a1cb6e26f66763cf4da
1 // PR c++/82053
2 // { dg-do compile { target c++14 } }
4 template<class T>
5 int fn() { return 42; }
7 template<class T>
8 auto lam = [](int = fn<T>()){};
10 int main()
12   lam<int>();