Files
c3c/test/test_suite/globals/misplaced_const.c3
2022-09-30 08:44:28 +02:00

6 lines
188 B
Plaintext

const FOO = 3;
int BAR = 4; // #error: This looks like a constant variable, did you forget 'const'?
const BAZ = "ofke";
FOOBAR; // #error: Expected the start of a global declaration here