mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
java: incompatible varargs tooltip fixed (IDEA-225610)
highlight and show in tooltip only wrong arguments GitOrigin-RevId: 9ccafd34fc549a84349d10b3cd7e0a233985e450
This commit is contained in:
committed by
intellij-monorepo-bot
parent
1d6b44a098
commit
13680758d9
+9
@@ -0,0 +1,9 @@
|
||||
class MyTest {
|
||||
void processStrings(String... list) {
|
||||
System.out.println(list);
|
||||
}
|
||||
|
||||
void test() {
|
||||
processStrings(<error descr="'processStrings(java.lang.String...)' in 'MyTest' cannot be applied to '(int, java.lang.String, java.lang.String)'">1</error>, "str", "s");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user