// PR c++/55724 // { dg-do compile { target c++11 } } template struct S {}; template void f(S) {} int main() { S<1> s; f(s); }