blob: 3d79a3392a8f0bb6b2d456d6cdcff1cc8ee3f6c5 [file] [log] [blame]
import java.util.ArrayList;
public class TestCompletion {
public static void test() {
A<ArrayList<String>> ref = new A<>();
ref.set(new <caret> );
}
}
class A<V> {
A() {
}
void set(V v){}
}