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 }