mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 20:11:25 +07:00
parameter info: current method preselection when there are varargs overloading (IDEA-168649)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Main {
|
||||
static <T> void of(T t) {}
|
||||
static <T> void of(T... t) {}
|
||||
|
||||
void foo(String... strs){
|
||||
Main.of(st<caret>rs);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user