Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-54.C
blobfaac46782dd037b92e69bcab18341fa7f8f8f86a
1 // PR c++/55992
2 // { dg-do compile { target c++11 } }
4 template <int> struct A { };
6 template <int I>
7 struct B
9   static constexpr int f (int i) { return i; }
11   template <int J>
12   using C = A<f (J)>;
14   C<I> c;