mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-25 17:11:52 +07:00
10 lines
145 B
Java
10 lines
145 B
Java
@FunctionalInterface
|
|
interface I<T> {
|
|
void foo(T t);
|
|
}
|
|
|
|
class Foo {
|
|
void test() {
|
|
<selection>String::toLowerCase</selection>;
|
|
}
|
|
} |