smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / QualifiedThis.java
blob72efffac348afdabc8e2edb1bedadf97216607b7
1 class A {
2 public void f(A a){}
4 public void g(){
5 B b = new B(){
6 void h(){
7 f(A.<caret>)
9 };
12 private class B{}