shithub: scc

ref: fcf6344abaab925b58476fb5e9039b5b6deee11e
dir: /tests/execute/0010-goto.c/

View raw version
int
main()
{
	start:
		goto next;
		return 1;
	success:
		return 0;
	next:
	foo:
		goto success;
		return 1;
}