OSDN Git Service

2012-06-14 Richard Guenther <rguenther@suse.de>
[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 }