added regression test related to bug #1001

This commit is contained in:
mrdudz 2020-01-25 20:56:52 +01:00
parent 90a2edcfa2
commit a2bbb6f1be
1 changed files with 10 additions and 0 deletions

10
test/err/bug1001.c Normal file
View File

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