aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/MultipleOutputFolders/base/srcRootTwo/b/B.java
blob: 917577ff88bda295e49244cbc80a0c85bfc3f895 (plain)
1
2
3
4
5
6
7
8
9
package b;

public class B {
	
	public int lesser(int x, int y) {
		return x < y ? x : y;
	}
	
}