(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1z/
launder6.h
       1  #ifndef GCC_TEST_LAUNDER6_H
       2  #define GCC_TEST_LAUNDER6_H
       3  
       4  struct A
       5  {
       6    int& x;
       7  };
       8  
       9  struct B
      10  {
      11    A a;
      12  };
      13  
      14  void f(B& b);
      15  
      16  #endif