]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/fntmpdefarg4.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / fntmpdefarg4.C
1 // PR c++/55724
2 // { dg-do compile { target c++11 } }
3
4 template<int N> struct S {};
5 template<typename T = int, T N> void f(S<N>) {}
6 int main() { S<1> s; f(s); }
This page took 0.035926 seconds and 5 git commands to generate.