(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
asan/
pr95033.c
       1  /* PR sanitizer/95033 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-fsanitize=address" } */
       4  
       5  struct a
       6  {
       7    int b;
       8  };
       9  
      10  struct a c(_Complex d)
      11  {
      12    return *(struct a *)&d;
      13  }