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

typedef char layout_type;
struct A
{
    layout_type member [[gnu::aligned (16)]];
};

static_assert (sizeof (A) == 16, "Alignment should be 16");