1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/test/val/static-fwd-decl.c
2017-03-09 20:40:20 +01:00

36 lines
534 B
C

/*
!!DESCRIPTION!! static forward declarations
!!ORIGIN!! cc65 regression tests
!!LICENCE!! Public Domain
!!AUTHOR!! Bob Andrews
*/
/*
see: https://github.com/cc65/cc65/issues/204
*/
#pragma warn(error, on)
typedef struct _DIRMENU
{
const char *name;
struct _DIRMENU *dest;
} DIRMENU;
static DIRMENU rmenu;
static DIRMENU lmenu = {
"left",
&rmenu
};
static DIRMENU rmenu = {
"right",
&lmenu
};
int main(void)
{
return lmenu.dest == &rmenu && rmenu.dest == &lmenu ? 0 : 1;
}