1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-05 17:25:17 +00:00
Files
cc65/test/err/bug1001.c
2020-01-25 20:56:52 +01:00

11 lines
148 B
C

/* https://github.com/cc65/cc65/issues/1001 */
#include <stdio.h>
int main(void)
{
printf("test",); /* should be an error */
return 0;
}