1 // { dg-do compile { target c++11 } }
3 typedef char layout_type;
6 layout_type member alignas (double);
9 static_assert (alignof (A) == alignof (double),
10 "alignment of struct A must be alignof (double)");
12 struct alignas (alignof (long double)) B {
16 static_assert (alignof (B) == alignof (long double),
17 "alignment of struct A must be alignof (double double)");