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

13 lines
257 B
Java

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