blob: 54309a9dd9376f33fa180babfe9f3251ce766261 [file] [log] [blame]
// 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 ();
}