1struct s
2{
3  int e;
4} x;
5
6struct rbuf
7{
8  struct s *p __attribute__ ((packed));
9} *b;
10
11f ()
12{
13  b->p = &x;
14}
15