Skip to main content
summaryrefslogtreecommitdiffstats
blob: af8170f0ba5b9d4de13c69a18b8b438a2796823c (plain) (blame)
1
2
3
4
5
6
7
8
package test1;
public class A {
	public void foo() {
		for (int i = 0; i < 8; i++) {
			foo();
		}
	}
}

Back to the top