parameter info: current method preselection when there are varargs overloading (IDEA-168649)

This commit is contained in:
Anna.Kozlova
2017-03-16 10:33:07 +01:00
parent e217ea727d
commit d8c140ae13
6 changed files with 53 additions and 1 deletions

View File

@@ -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);
}
}