smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / InferFromCall.java
blobcd6592abda59e1b452a690d767841d7dc7cb8f8a
1 import java.util.ArrayList;
3 class Arrays {
4 static <T> ArrayList<T> asList(T... ts) {
5 return null;
9 class DDD {
10 static {
11 DDD ddd = new DDD();
12 new ArrayList<DDD>(Arrays.asList(<caret>));