aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alias-decl-39.C
blob: 9fe553861886930dd8d4765b204104a606eb52da (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/58856
// { dg-require-effective-target c++11 }

template <typename T>
struct U1 {};

template <typename T1, typename... Ts>
using U2 = U1<T1>;

template <typename T1, typename... Ts>
using U3 = U2<T1, Ts...>;