1  #ifndef GCC_TEST_LAUNDER5_H
       2  #define GCC_TEST_LAUNDER5_H
       3  
       4  struct A
       5  {
       6    const int x;
       7  };
       8  
       9  struct B
      10  {
      11    A a;
      12  };
      13  
      14  void f(B& b);
      15  
      16  #endif