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: f1d638bd06b88524a4e37c9e59bc3d6fe6a36772 (plain) (blame)
1
2
3
4
5
6
7
8
pckage test1;
public class A {
	public void foo() {
		for (int i = 0; i < 8; i++) {
			foo();
		}
	}
}

Back to the top