mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
27 lines
452 B
C
27 lines
452 B
C
|
/*
|
||
|
!!DESCRIPTION!! function pointer bugs
|
||
|
!!ORIGIN!! testsuite
|
||
|
!!LICENCE!! Public Domain
|
||
|
!!AUTHOR!! Greg
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
see: http://www.cc65.org/mailarchive/2015-03/11726.html
|
||
|
and: http://www.cc65.org/mailarchive/2015-03/11734.html
|
||
|
*/
|
||
|
|
||
|
static int func(void) {return 0;}
|
||
|
static int (*p)(void);
|
||
|
static int n;
|
||
|
|
||
|
int main(void) {
|
||
|
|
||
|
p = func;
|
||
|
n = (p == &func);
|
||
|
n = (p == func);
|
||
|
|
||
|
n = func - p; /* invalid C */
|
||
|
|
||
|
return 0;
|
||
|
}
|