shithub: scc

ref: 0fc1735500cec3c113a2ae30cb98e6de81fc2c51
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;
}