tcc-65816/test/compile/tcc-fn-unktype.c
2017-06-09 13:52:12 +02:00

7 lines
209 B
C

/* using unknown pointer type as the first argument in function implementations caused segfault
because it was mistaken for a K&R-style function declaration */
int main(unknown *x, void *x)
{
return 0;
}