mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
16 lines
181 B
Java
16 lines
181 B
Java
interface Base {
|
|
void bar();
|
|
}
|
|
|
|
class Test {
|
|
{
|
|
Base base = () -> {};
|
|
}
|
|
}
|
|
|
|
class Child implements Base {
|
|
public void foo() {
|
|
System.out.println("Hi there.");
|
|
}
|
|
}
|