forked from JavaTX/JavaCompilerCore
15 lines
296 B
Plaintext
15 lines
296 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.util.function.Function;
|
||
|
|
||
|
public class FunctionalInterface {
|
||
|
Integer accept(Function<Integer, Integer> f) {
|
||
|
return f.apply(20);
|
||
|
}
|
||
|
|
||
|
Integer m() {
|
||
|
var v = accept(i -> {
|
||
|
return i * 10;
|
||
|
});
|
||
|
return v;
|
||
|
}
|
||
|
}
|