// PR c++/39863 // { dg-do compile { target c++11 } } template struct A {}; template struct S {}; template A< S... > f(U... u) { return A< S... >(); } int main() { f(0.0); }