shithub: scc

ref: 994751d39485e086ef623f202fb1b84729fd5d19
dir: /tests/cc/execute/0159-typedef.c/

View raw version
/* Taken from plan9 kernel */

typedef struct Clock0link Clock0link;
typedef struct Clock0link {
	int             (*clock)(void);
	Clock0link*     link;
};

#if __STDC_VERSION__ >= 201112L
typedef struct Clock0link Clock0link;
#endif

int
f(void)
{
	return 0;
}

Clock0link cl0 = {
	.clock = f
};

int
main(void)
{
	return (*cl0.clock)();
}