1 // PR c++/55724
2 // { dg-do compile { target c++11 } }
3 
4 template<int N> struct S {};
f(S<N>)5 template<typename T = int, T N = 42> void f(S<N>) {}
main()6 int main() { S<1> s; f(s); }
7