mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
12 lines
140 B
Java
12 lines
140 B
Java
interface I {
|
|
void foo();
|
|
}
|
|
|
|
class IImpl implements I {
|
|
public void foo(){}
|
|
public void g<caret>et() {}
|
|
|
|
{
|
|
I i = () -> {};
|
|
}
|
|
} |