mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 22:20:24 +07:00
616e3ca030
GitOrigin-RevId: f1d86f6127a64146e87998423f3034e38a46409c
6 lines
203 B
Java
6 lines
203 B
Java
// "Replace lambda with method reference" "true"
|
|
import java.util.Random;
|
|
import java.util.function.Function;
|
|
class Bar extends Random {
|
|
Function<Integer, Integer> s = (i) -> super.ne<caret>xt(i);
|
|
} |