blob: 6fef926876bbf3554e0001f96935c593be93bfaa [file] [log] [blame]
// PR c++/58707
// { dg-do compile { target c++11 } }
// ICE during deduction of default parms
template <class T, T N = T(), bool B = N>
void f(T x) {}
template void f<int> (int);