blob: 897686f772ae547c383e4297cd9b56febb6609b8 [file] [log] [blame]
/* Check that pragma pack overrides STRUCTURE_SIZE_BOUNDARY. */
/* { dg-do compile } */
#pragma pack(1)
struct S
{
char a;
};
int test[sizeof(struct S) == 1 ? 1: -1];