shithub: scc

ref: d8bea56691a536f08c04de1ae66fa4f145c9d2f0
dir: /tests/0010-goto.c/

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