Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/streamApiMigration/beforeConjunction.java
T

13 lines
256 B
Java

// "Replace with reduce()" "true"
import java.util.*;
public class Main {
public void testConjunction() {
List<Boolean> booleans = new ArrayList<>();
boolean acc = true;
for <caret> (Boolean bool : booleans) {
acc &= bool;
}
}
}