smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / InferFromCall-out.java
blobc8fe903355e58c8531f5ffbaa29e91e45f77c459
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(ddd)<caret>);