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

template <int N>
struct F
{
  template <typename U> F (U);
};

struct S
{
  void foo (F <0> x = [] {}) {}
};

int
main ()
{
  S s;
  s.foo ();
}