smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / InThisExpression.java
blobfba4e083699db19a04676890e18cc9e13e97c9ae
1 public class Foo {
3 Runnable r = new Runnable() {
4 public void run() {
5 Foo f = <caret>Foo.this;
7 };