// "Replace method call on lambda with lambda body" "true-preview" import java.util.function.IntBinaryOperator; public class Main { void test() { int res = ((IntBinaryOperator)(x, y) -> x).applyAsInt(5, 6); } }