shithub: scc

ref: 1e29199cbbb7d19343dae9c89493b5a9cb40caf9
dir: /tests/execute/0108-bug.c/

View raw version


int
main()
{
	int i;

	for(i = 0; i < 10; i++)
		if (!i)
			continue;
	
	return 0;
}