mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 11:49:20 +07:00
616e3ca030
GitOrigin-RevId: f1d86f6127a64146e87998423f3034e38a46409c
11 lines
149 B
Java
11 lines
149 B
Java
package b;
|
|
|
|
import a.A;
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
class B extends A {
|
|
public Consumer<Integer> callFoo() {
|
|
return super::foo;
|
|
}
|
|
} |