blob: 1228b7edcdb3fc92cf4ee6d9bc7c64a51f34f800 [file] [log] [blame]
/* PR sanitizer/95033 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=address" } */
struct a
{
int b;
};
struct a c(_Complex d)
{
return *(struct a *)&d;
}