1 // PR c++/85713
2 // { dg-do compile { target c++14 } }
3 
4 auto l3 = [](auto v, auto (&array) [5]) -> int { return v + array[0]; };
5