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