Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6d7023f81b0446f520bc09ac98612ae74e8e3f99 (plain) (blame)
1
2
3
4
5
6
7
8
9
// test034 
public class A {
	void foo() {
		if ((condition1 && condition2) && (condition3 && condition4)
				|| (condition5 && conditionnnnnnnnn6)) {
			doSomething();
		}
	}
}

Back to the top