inline: find this ref corresponding to static imports (IDEA-64508)

This commit is contained in:
anna
2011-01-24 18:31:36 +01:00
parent 2ec7b6f5e6
commit a6e6122719
4 changed files with 55 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
import java.util.ArrayList;
import java.util.List;
import static Statics._emptyList;
public class Statics {
public static <T> List<T> _emptyList() {
return new ArrayList<T>();
}
}
class Foo {
public static void main(String[] args) {
List<String> v1 = _emptyList();
doSomething(v<caret>1);
}
public static void doSomething(List<String> list) {
}
}