mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
9 lines
219 B
Java
9 lines
219 B
Java
// "Cast lambda return to 'long'" "true-preview"
|
|
import java.util.function.*;
|
|
|
|
class Demo {
|
|
void test(Function<String, String> input) {
|
|
Function<String, Long> result = input.andThen(s -> <caret>s.length());
|
|
}
|
|
}
|