mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
14 lines
149 B
C
14 lines
149 B
C
|
|
/* bug #1145 - Internal error with function type object */
|
|
|
|
void f()
|
|
{
|
|
f = 0; /* internal error */
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
f();
|
|
return 0;
|
|
}
|