blob: 52e6f38a0ab8d67eafc89d4d210b72d981d48e2d [file] [log] [blame]
// PR c++/55724
// { dg-do compile { target c++11 } }
template<int N> struct S {};
template<typename T = int, T N> void f(S<N>) {}
int main() { S<1> s; f(s); }