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

8 lines
74 B
Plaintext

// Array dimension must be non-negative
struct foo {
int x[-1];
};