mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
7 lines
233 B
C
7 lines
233 B
C
// RUN: %clang_cc1 -triple x86_64-apple-darwin -verify %s
|
|
|
|
void f() {
|
|
int a[2147483647U][2147483647U]; // expected-error{{array is too large}}
|
|
int b[1073741825U - 1U][2147483647U];
|
|
int c[18446744073709551615U/sizeof(int)/2];
|
|
}
|