mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 21:51:49 +07:00
616e3ca030
GitOrigin-RevId: f1d86f6127a64146e87998423f3034e38a46409c
6 lines
187 B
Java
6 lines
187 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 = super::next;
|
|
} |