1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4void test(void) {5 int z[1];6 __builtin_add_overflow(1, 1, z);7}8