mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
14 lines
328 B
Java
14 lines
328 B
Java
import java.util.function.UnaryOperator;
|
|
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
UnaryOperator<String> f1 = s -> {
|
|
System.out.println("foo");
|
|
return <selection>s.trim()</selection>;
|
|
};
|
|
UnaryOperator<String> f2 = s -> {
|
|
System.out.println("foo");
|
|
return s.trim();
|
|
};
|
|
}
|
|
} |