smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / afterNew / after8.java
blob8e17e8abc6e1a43cb43fafa5f653bf2161157584
1 class AAA{
2 interface XXX<T>{}
3 interface ZZZ<T>{}
4 class BBB<Z> implements XXX<ZZZ<Z>>{}
6 XXX<ZZZ<String>> aa = new BBB<String>();