PR tree-optimization/67955
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib30.C
blobfd2826a60298de4960baaa822b5bb0a1e32263e5
1 // { dg-do compile }
2 // PR c++/35074
3 template<typename T> struct A
5   void foo() const;
6 } __attribute((aligned(4)));
8 template<typename T> void A<T>::foo() const {}