[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib26.C
blobdedf43a02461853a96b7856985a5b9e9f56e0e73
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.
5 template<class T>
6 struct __attribute__((aligned(1))) A
8   A& operator=(const A &t);
9 };
11 template<class T>
12 A<T>& A<T>::operator=(const A<T> &t)