blob: 50540273a3d3a7f9d2f9ca70ec4549b4c956459e [file] [log] [blame]
/* PR sanitizer/104449 */
/* { dg-do compile } */
/* { dg-options "-fexceptions -fsanitize=address -fstack-check=generic" } */
void bar (int *);
void
foo (void)
{
int a[16];
bar (a);
}