1/* { dg-do compile } */
2/* { dg-options "-fsanitize=integer-divide-by-zero" } */
3
4void
5foo (void)
6{
7  int A[-2 / -1] = {};
8}
9