shithub: scc

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

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