1 /* PR target/69072 */
2 /* Reported by Zdenek Sojka <zsojka@seznam.cz> */
3 
4 /* { dg-do compile } */
5 
6 typedef struct
7 {
8   struct
9   {
10     double d;
11   } __attribute__((packed)) a;
12 } S;
13 
14 void
foo(S s1,S s2,S s3,S s4,S s5,S s6,S s7)15 foo (S s1, S s2, S s3, S s4, S s5, S s6, S s7)
16 {}
17