1 /* PR sanitizer/78270 */
2 /* { dg-do compile } */
3 /* { dg-additional-options "-Wno-switch-unreachable" } */
4
5 typedef struct
6 {
7 } bdaddr_t;
8
9 int a;
10 void fn1 ()
11 {
12 switch (a)
13 &(bdaddr_t){};
14 }