mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
13 lines
164 B
Java
13 lines
164 B
Java
interface Base {
|
|
default void foo() {
|
|
System.out.println("Hi there.");
|
|
}
|
|
void ba<caret>r();
|
|
}
|
|
|
|
class Test {
|
|
{
|
|
Base base = () -> {};
|
|
}
|
|
}
|