// PR c++/69223 // { dg-do compile { target c++11 } } template struct A { T x[20]; }; int main() { auto l = [](const A& i){ return i; }; A a; l(a); }