summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/completion/smartType/SmartFinish-out.java
blob: 1583beea2183e57b25e8baace621ba7927349d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
public class Foo {

    {
        Foo foo = null;
        Foo bar = id(foo);
        <caret>
    }

    Foo id(Foo foo) {return foo;}

}