JavaCompilerCore/resources/bytecode/javFiles/Bug298.jav
Daniel Holle 8fdfbf875b
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m42s
Fix #298 maybe?
2024-03-26 17:31:48 +01:00

18 lines
420 B
Java

import java.util.List;
import java.util.ArrayList;
import java.lang.Integer;
import java.lang.System;
import java.lang.Boolean;
import java.io.PrintStream;
import java.util.stream.Stream;
import java.util.function.Function;
public class Bug298 {
public void m() {
List<Integer> list = new ArrayList<>();
list.stream().map(x -> 2 * x);
Function<Integer, Boolean> filter = x -> true;
}
}