mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
parameter info: process vararg call to select appropriate overload (IDEA-229623)
GitOrigin-RevId: baccfda899c6ae8dbd3b5506ef6f29c960cf79bd
This commit is contained in:
committed by
intellij-monorepo-bot
parent
aa40e9cd04
commit
241b7042d4
@@ -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) { }
|
||||
}
|
||||
Reference in New Issue
Block a user