aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/asan/pr95033.c
blob: 1228b7edcdb3fc92cf4ee6d9bc7c64a51f34f800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR sanitizer/95033 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=address" } */

struct a
{
  int b;
};

struct a c(_Complex d)
{
  return *(struct a *)&d;
}