mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
10 lines
154 B
Java
10 lines
154 B
Java
class Executor<E> {
|
|
<K> void bar(Executor<K> e) {
|
|
Runnable r = () -> foo(e);
|
|
}
|
|
|
|
private <T> T foo(final Executor<T> e) {
|
|
return null;
|
|
}
|
|
}
|