mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
48 lines
851 B
Java
48 lines
851 B
Java
public class NotAFIT {
|
|
static class First {
|
|
static interface A<T> {
|
|
void foo1();
|
|
void foo2();
|
|
}
|
|
static <T> void foo(A<T> a) {
|
|
}
|
|
|
|
void bar() {
|
|
foo(<error descr="Multiple non-overriding abstract methods found">() ->{}</error>);
|
|
}
|
|
}
|
|
|
|
static class WithInheritance {
|
|
static interface A<T> {
|
|
void foo1();
|
|
}
|
|
|
|
static interface B<M> extends A<M> {
|
|
void foo2();
|
|
}
|
|
|
|
static <T> void foo(B<T> a) {
|
|
}
|
|
|
|
void bar() {
|
|
foo(<error descr="Multiple non-overriding abstract methods found">()->{}</error>);
|
|
}
|
|
}
|
|
|
|
static class WithInheritanceOverrideSameMethod {
|
|
static interface A<T> {
|
|
void foo1();
|
|
}
|
|
|
|
static interface B<M> extends A<M> {
|
|
void foo1();
|
|
}
|
|
|
|
static <T> void foo(B<T> a) {
|
|
}
|
|
|
|
void bar() {
|
|
foo(()->{});
|
|
}
|
|
}
|
|
} |