Files
cc65/test/standard_err/issue2607_not_cc65.c

15 lines
268 B
C

#include <stdio.h>
#include <stdlib.h>
/* this should fail on all three standards
*/
int main(void) {
#if __CC65_STD__ != __CC65_STD_CC65__
printf("\e");
#else
#error "this needs to error on CC65 to make it through validation"
#endif
return EXIT_SUCCESS;
}