13 lines · c
1// RUN: %clang_cc1 -triple i686-apple-darwin -verify %s2 3int a[][0]; // expected-warning {{tentative array definition assumed to have one element}}4void gh64564_1(void) {5 int b = a[0x100000000][0];6}7 8typedef struct {} S;9S s[]; // expected-warning {{tentative array definition assumed to have one element}}10void gh64564_2(void) {11 S t = s[0x100000000];12}13