Skip to main content
summaryrefslogblamecommitdiffstats
blob: e6e12f42ead2f8c2900ff3307fcbe45d3db829a2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                            
package expression_out;

public class A_test605 {

	public void foo() {
		int i= 0;
		while (extracted(i))
			foo();
		foo();	
	}

	protected boolean extracted(int i) {
		return /*[*/i <= 10/*]*/;
	}	
}

Back to the top