mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
highlight and show in tooltip only wrong arguments GitOrigin-RevId: 9ccafd34fc549a84349d10b3cd7e0a233985e450
9 lines
284 B
Java
9 lines
284 B
Java
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");
|
|
}
|
|
} |