mirror of
https://github.com/cc65/cc65.git
synced 2025-01-09 11:30:29 +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 */
|