shithub: scc

ref: 30d5a2c869c5f47cca98fdedb9024d462c6b9191
dir: /tests/execute/0158-ternary.c/

View raw version
int
main(void)
{
	int i, *q;
	void *p;

	i = i ? 0 : 0l;
	p = i ? (void *) 0 : 0;
	p = i ? 0 : (void *) 0;
	p = i ? 0 : (const void *) 0;
	q = i ? 0 : p;
	q = i ? p : 0;
	q = i ? q : 0;
	q = i ? 0 : q;

	return (int) q;
}