1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-19 02:33:19 +00: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;
}