]> gcc.gnu.org Git - gcc.git/blame - 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
CommitLineData
b9e551ad
PC
1// PR c++/55992
2// { dg-do compile { target c++11 } }
3
4template <int> struct A { };
5
6template <int I>
7struct 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 2.708766 seconds and 5 git commands to generate.