// PR c++/60223 // { dg-do compile { target c++11 } } template struct A { }; template void foo(A, T = T{}); void bar() { foo(A()); }