mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
15 lines
196 B
Java
15 lines
196 B
Java
interface Base {
|
|
default void foo<caret>() {
|
|
System.out.println("Hi there.");
|
|
}
|
|
void bar();
|
|
}
|
|
|
|
class Test {
|
|
{
|
|
Base base = () -> {};
|
|
}
|
|
}
|
|
|
|
class Child implements Base {}
|