1 // PR c++/70781 2 // { dg-do compile { target c++11 } } 3 4 template < typename T > foo()5 void foo () 6 { 7 T ([=] (S) { [=] {}; }); // { dg-error "" } 8 } 9