* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / attrib54.C
blobe5817c3d9fa255fa9b5d2af809b2e7f11bbfacd7
1 // { dg-do compile { target c++11 } }
3 inline namespace N __attribute__((__abi_tag__ ("foo"))) {}
4 template <typename> struct A {};
5 namespace N {
6 template <typename> class B {};
8 template <typename T> class __attribute__((__aligned__ (sizeof (T)))) C {};
9 template <typename> struct D {
10   template <typename _Up> using G = C<_Up>;
12 template <typename T> struct F {
13   template <typename U> struct H {
14     typedef typename D<T>::template G<U> I;
15   };
17 template <typename T, typename = C<T>> struct J {
18   C<A<const B<char>>> L;
19   typedef F<C<int>>::H<A<const B<char>>>::I M;
20   J<M> *a;