(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
lambda/
lambda-ice16.C
// PR c++/70781
// { dg-do compile { target c++11 } }

template < typename T >  
void foo ()
{
  T ([=] (S) { [=] {}; }); 	// { dg-error "" }
}