mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
13 lines
150 B
C
13 lines
150 B
C
|
|
/* bug #1113 - Compiler crashes when calling functions "redefined" as other types */
|
|
|
|
void f() {}
|
|
|
|
int f;
|
|
|
|
int main(void)
|
|
{
|
|
f();
|
|
return 0;
|
|
}
|