mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
13 lines
226 B
Java
13 lines
226 B
Java
// "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;
|
|
}
|
|
}
|