1// PR c++/20763
2
3typedef void *voidp;
4
5struct S
6{
7  char a;
8  voidp __attribute__ ((aligned (16))) b;
9};
10
11struct T
12{
13  char a;
14  void *__attribute__ ((aligned (16))) b;
15};
16
17int f[sizeof (struct S) != sizeof (struct T) ? -1 : 1];
18