shithub: scc

ref: 2573b7fab4e3a73d0de572bcf3f23bfcfd76f83e
dir: /tests/0079-cond.c/

View raw version

int
main()
{
	if(0 ? 1 : 0)
		return 1;
	if(1 ? 0 : 1)
		return 2;
	return 0;
}