smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / generics / after2.java
blobee4a000794d42d570ca65f6babd4154f916434cf
1 class A<T>{
3 T get(){return null;}
4 void put(T str);
7 new A<String>().put(new A<String>().get());<caret>