PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / pr28712_0.c
blobdff029cadb18a75c505a19a531664842b5b0f970
1 /* PR c/28712 */
2 /* { dg-lto-do link } */
4 struct A;
6 extern struct A *a;
8 struct A { } __attribute__((packed));
10 struct B __attribute__((aligned (sizeof (int))));
12 extern struct B *b;
14 struct B { int i; } __attribute__((packed));
16 int main() { return 0; }