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