1 /* PR sanitizer/104449 */
2 /* { dg-do compile } */
3 /* { dg-options "-fexceptions -fsanitize=address -fstack-check=generic" } */
4
5 void bar (int *);
6
7 void
8 foo (void)
9 {
10 int a[16];
11 bar (a);
12 }