mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-15 07:33:30 +07:00
incompatible types tooltip: highlight generic type components in the multiple args mismatched tooltip
GitOrigin-RevId: a1b3fec553161841a559e45c2a76e9d46b12975f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
34a4e401a6
commit
4e4396b0c8
+8
@@ -0,0 +1,8 @@
|
||||
import java.util.List;
|
||||
class MyTest {
|
||||
void f(List<Integer> integerList, List<String> stringList) {}
|
||||
|
||||
void m(List<Integer> integerList, List<String> stringList) {
|
||||
f<error descr="'f(java.util.List<java.lang.Integer>, java.util.List<java.lang.String>)' in 'MyTest' cannot be applied to '(java.util.List<java.lang.String>, java.util.List<java.lang.Integer>)'">(stringList, integerList)</error>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user