shithub: scc

ref: c94189d775d2a3a39d22090deb8a51580bf0d45b
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;
} Clock0link;


int
f(void)
{
	return 0;
}

Clock0link cl0 = {
	.clock = f;
};

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