mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 23:50:57 +07:00
otherwise unrelated lambdas/method references may land in results when intermediate inheritors contain default methods GitOrigin-RevId: aa5baae37ff676ca477ca41d82b782c42d5fda6c
14 lines
242 B
Java
14 lines
242 B
Java
class Clazz {
|
|
public static void main(String[] args) {
|
|
Child child = x -> System.out.println();
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
void execute(int i);
|
|
}
|
|
|
|
interface Child extends I {
|
|
default void execute(int i) {}
|
|
void f(int i);
|
|
} |