mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
14 lines
195 B
Java
14 lines
195 B
Java
class Test {
|
|
{
|
|
Bar bar = Test::length;
|
|
b<caret>ar._("");
|
|
}
|
|
|
|
public static Integer length(String s) {
|
|
return s.length();
|
|
}
|
|
|
|
interface Bar {
|
|
Integer _(String s);
|
|
}
|
|
} |