// "Replace method call on lambda with lambda body" "true-preview" import java.util.function.IntBinaryOperator; public class Main { void test() { int z = 0; int x = z += 2; z += 3; int res = x; } }