1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
cc65/test/err/pr1135.c
2020-08-18 00:41:35 +02:00

9 lines
85 B
C

void f(void) {}
void f(int); /* Should fail */
int main(void)
{
return 0;
}