mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
It appears that findMethodInSuperClassBySignatureInDerived does not substitute recursively, at least in some cases.
11 lines
178 B
Java
11 lines
178 B
Java
import java.util.*;
|
|
|
|
class Foo {
|
|
static class ListData extends ArrayList {}
|
|
|
|
void test() {
|
|
Set<ListData> list = new HashSet<>();
|
|
list.addA<caret>
|
|
}
|
|
}
|