Files
c3c/test/test_suite/arrays/negative_array.c3
2022-10-15 02:45:19 +02:00

6 lines
250 B
Plaintext

int[-1] a; // #error: An array may not have a negative
int[10-20] b; // #error: An array may not have a negative
int[<-1>] c; // #error: A vector may not have a negative width
int[<10-20>] d; // #error: A vector may not have a negative width