]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/alias-decl-pr92206-2.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-pr92206-2.C
1 // { dg-require-effective-target c++11 }
2
3 template <bool> struct A;
4 class Vector {
5 template <typename> struct TypeIsGCThing {
6 template <typename T, typename A<T ::value>::Type> using Vector = Vector;
7 struct B;
8 template <typename> class ContainerIter {
9 using Action = B;
10 using ActionVector = Vector<Action, 0>;
11 ContainerIter<ActionVector> a;
12 };
13 };
14 };
This page took 0.039905 seconds and 5 git commands to generate.