// PR c++/49276 // { dg-do compile { target c++11 } } template struct F { template F (U); }; struct S { void foo (F <0> x = [] {}) {} }; int main () { S s; s.foo (); }