smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / DoubleThis-out.java
blobaef4adfabbbd9fe6533c4f915f474ab9ce500031
1 interface Aaa {}
2 interface Bbb {}
4 class Ccc implements Aaa, Bbb {
5 void foo(Aaa a);
6 void foo(Bbb b);
9 foo(this);<caret>