]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/vt-35026.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / vt-35026.C
1 // { dg-do compile { target c++11 } }
2 template<typename... T> struct A
3 {
4 T* x[1]; // { dg-error "parameter packs|T" }
5 };
6
7 A<int> a;
This page took 0.038655 seconds and 5 git commands to generate.