mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
36 lines
522 B
C
36 lines
522 B
C
/* Bug 1838 - function parameters declared as function types rather than function pointers */
|
|
|
|
#include <stdio.h>
|
|
|
|
static int failures = 0;
|
|
|
|
typedef int fn_t(int);
|
|
|
|
int main(void)
|
|
{
|
|
void foo(fn_t*);
|
|
fn_t bar;
|
|
|
|
foo(bar);
|
|
return failures;
|
|
}
|
|
|
|
void foo(int func(int))
|
|
{
|
|
int n = func(42);
|
|
|
|
if (n != 12) {
|
|
printf("n = %d, expected: 12\n", n);
|
|
++failures;
|
|
}
|
|
}
|
|
|
|
int bar(int a)
|
|
{
|
|
if (a != 42) {
|
|
printf("a = %d, expected: 42\n", a);
|
|
++failures;
|
|
}
|
|
return 12;
|
|
}
|