Skip to main content
summaryrefslogtreecommitdiffstats
blob: bda242851e294fda778c1b5f5e8eab9f18e62427 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package return_in;

public class A_test729 {
	public void foo(int x) {
		while (x==3) {
		}
		int a = 0;
		for (int i = 0; i < 3; i++) {
			i = extracted(i);
		}
	}

	protected int extracted(int i) {
		/*[*/g(i++);/*]*/
		return i;
	}

	private void g(int i) {}
}

Back to the top