mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
10 lines
142 B
Java
10 lines
142 B
Java
@FunctionalInterface
|
|
interface I<T> {
|
|
T foo(T t);
|
|
}
|
|
|
|
class Foo {
|
|
void test() {
|
|
<selection>String::toLowerCase</selection>;
|
|
}
|
|
} |