mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
6 lines
175 B
C
6 lines
175 B
C
/* Bug #2285 - Regression in type composition */
|
|
|
|
void foo(); /* OK */
|
|
void foo(int (*)(int)); /* OK */
|
|
void foo(int (*)(long)); /* WRONG: Should be an error */
|