OSDN Git Service

* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib30.C
1 // { dg-do compile }
2 // PR c++/35074
3 template<typename T> struct A
4 {
5   void foo() const;
6 } __attribute((aligned(4)));
7
8 template<typename T> void A<T>::foo() const {}