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