1  /* { dg-options "-mno-strict-align" } */
       2  /* { dg-do compile } */
       3  
       4  struct S {
       5    int a;
       6    double b;
       7  };
       8  struct S GetNumbers();
       9  struct S g;
      10  
      11  void foo(){
      12    g = GetNumbers();
      13  }