(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
fntmpdefarg4a.C
// PR c++/55724
// { dg-do compile { target c++11 } }

template<int N> struct S {};
template<typename T = int, T N = 42> void f(S<N>) {}
int main() { S<1> s; f(s); }