mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
13 lines
175 B
Plaintext
13 lines
175 B
Plaintext
class Test {
|
|
{
|
|
((Bar) Test::length)._("");
|
|
}
|
|
|
|
public static Integer length(String s) {
|
|
return s.length();
|
|
}
|
|
|
|
interface Bar {
|
|
Integer _(String s);
|
|
}
|
|
} |