Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: e2071545fc706f4c27e68d2e8d53d5460a67bd72 (plain) (blame)
1
2
3
4
5
6
7
function foo() {
		var i= 0;
		foo();
		do {
			foo();
		} while (/*]*/i <= 10/*[*/);
	}

Back to the top