* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-31.C
blobab58e6e2b27c09cb4282749d5cf21d50cd4f4125
1 // PR c++/35097
2 // { dg-do compile { target c++11 } }
4 template<int> struct A;
6 template<> struct A<0>
8   typedef int X [[gnu::aligned(4)]];
9 };
11 template<typename T> void foo(const A<0>::X&, T);
13 void bar()
15   foo(A<0>::X(), 0);