mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
don't reorder usages for no reason GitOrigin-RevId: 2bdeee871d696c7351addc4a1a8e886d148f6186
13 lines
221 B
Java
13 lines
221 B
Java
class Clazz {
|
|
public static void main(String[] args) {
|
|
Child child = () -> System.out.println();
|
|
}
|
|
}
|
|
|
|
interface Parent {
|
|
void exec<caret>ute();
|
|
}
|
|
|
|
interface Child extends Parent {
|
|
void execute();
|
|
} |