shithub: scc

ref: f515b0a6e4650933cee27e75a2d9e3690222cbfd
dir: /tests/execute/0108-bug.c/

View raw version


int
main()
{
	int i;

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