]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/alias-decl-54.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-54.C
1 // PR c++/55992
2 // { dg-do compile { target c++11 } }
3
4 template <int> struct A { };
5
6 template <int I>
7 struct B
8 {
9 static constexpr int f (int i) { return i; }
10
11 template <int J>
12 using C = A<f (J)>;
13
14 C<I> c;
15 };
This page took 0.039818 seconds and 5 git commands to generate.