mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 22:09:57 +07:00
8 lines
145 B
Java
8 lines
145 B
Java
class Foo {
|
|
void test() {
|
|
Comparable<String> java = o -> {
|
|
int c = o.length();
|
|
return c;
|
|
};
|
|
}
|
|
} |