aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/asan/pr78270.c
blob: 5583ce472e4705b82370980cf8221c17c6d0464d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR sanitizer/78270 */
/* { dg-do compile } */
/* { dg-additional-options "-Wno-switch-unreachable" } */

typedef struct
{
} bdaddr_t;

int a;
void fn1 ()
{
  switch (a)
    &(bdaddr_t){};
}