OSDN Git Service

* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / attrib38.C
1 // PR c++/36625
2
3 template <int N>
4 struct A {
5   struct S { short f[3]; } __attribute__ ((aligned (N)));
6 };
7
8 int main ()
9 {
10   A<4>::S s;
11 }