mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
It appears that findMethodInSuperClassBySignatureInDerived does not substitute recursively, at least in some cases.
11 lines
175 B
Java
11 lines
175 B
Java
import java.util.*;
|
|
|
|
class Foo {
|
|
static class ListData extends ArrayList {}
|
|
|
|
void test() {
|
|
Set<ListData> list = new HashSet<>();
|
|
list.addAll()
|
|
}
|
|
}
|