aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/alias-decl-17.C
blob: bf947fb811e48898e93f69e3e0f70ba0e39477f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Origin PR c++/51289
// { dg-do compile { target c++11 } }

template<typename a, template <typename, typename> class b>
struct foo {
  template <typename t>
  using type = b<a, t>;
  template <typename t>
  b<a, t> funca() {}

  template <typename t>
  type<t> funcb() {}
};

// This is an additional test, to emit an error message when using
// unexpanded parameter packs in an alias declaration.
template <class ... T>
struct S {};

template<class ... T>
using A = S<T>; // { dg-error "parameter packs not expanded" }