mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 03:37:58 +07:00
disable fixes when target types depend on unresolved type params (IDEA-185967)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// "Cast parameter to 'M'" "false"
|
||||
class a {
|
||||
void doSomething(String[] data) {}
|
||||
void test() {
|
||||
doSomething(Li<caret>st.of(""));
|
||||
}
|
||||
|
||||
interface List<L> {
|
||||
static <M> List<M> of(M... ms) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user