Files
ispc/tests_errors/array-dim-huge.ispc

8 lines
110 B
Plaintext

// Array dimension must be representable with a 32-bit integer.
struct foo {
int x[0xffffffffffff];
};