mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
10 lines
228 B
Java
10 lines
228 B
Java
// "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).appl<caret>yAsInt(5, 6);
|
|
}
|
|
}
|