(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
gen-attrs-38.C
// { dg-do compile { target c++11 } }
// PR c++/36625

template <int N>
struct A {
  struct S { short f[3]; } [[gnu::aligned (N)]]; // { dg-warning "ignored" }
};

int main ()
{
  A<4>::S s;
}