// { dg-do assemble } template struct S { template void f(U u) { this->template f<>(3); } }; void g() { S s; s.f(1.0); }