* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / gen-attrs-26.C
blob00069b8f518b80ec9d38e5aae131f65533577d87
1 // PR c++/28659
2 // The attribute was causing us to get confused in merge_types when
3 // combining the template type with an uninstantiated version.
4 // { dg-do compile { target c++11 } }
6 template<class T>
7 struct [[gnu::aligned(1)]] A
9   A& operator=(const A &t);
12 template<class T>
13 A<T>& A<T>::operator=(const A<T> &t)