mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
14 lines
221 B
Java
14 lines
221 B
Java
class Test {
|
|
{
|
|
bar(<selection>Test::length</selection>);
|
|
}
|
|
|
|
public static Integer length(String s) {
|
|
return s.length();
|
|
}
|
|
|
|
static void bar(Bar bar) {}
|
|
interface Bar {
|
|
Integer _(String s);
|
|
}
|
|
} |