mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
11 lines
148 B
C
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;
|
|
}
|