parameter info: process vararg call to select appropriate overload (IDEA-229623)

GitOrigin-RevId: baccfda899c6ae8dbd3b5506ef6f29c960cf79bd
This commit is contained in:
Anna Kozlova
2021-07-15 14:03:32 +02:00
committed by intellij-monorepo-bot
parent aa40e9cd04
commit 241b7042d4
3 changed files with 23 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
class Main {
void f(Throwable t){
main("", <caret>t);
}
public static void main(String s, Throwable t, String... args) { }
public static void main(String s, String... args) { }
}