1/* { dg-error "-fcheck-pointer-bounds is not supported with Address Sanitizer" } */
2/* { dg-do compile { target { ! x32 } } } */
3/* { dg-options "-fcheck-pointer-bounds -mmpx -fsanitize=address" } */
4
5extern int x[];
6
7void
8foo ()
9{
10  x[0] = 0;
11}
12