]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/nondeduced7.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / nondeduced7.C
1 // PR c++/58836
2 // { dg-do compile { target c++11 } }
3
4 template<typename, int> struct A;
5 template<typename T> struct A<T, T{}> {}; // { dg-error "partial specialization" }
6 A<int, 0> a;
This page took 0.037748 seconds and 5 git commands to generate.