cc65/test/err/pr1135.c

9 lines
85 B
C
Raw Normal View History

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