1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00
cc65/test/err/pr1135.c

9 lines
85 B
C
Raw Normal View History

2020-08-17 22:41:35 +00:00
void f(void) {}
void f(int); /* Should fail */
int main(void)
{
return 0;
}