blob: d7d96f42517550df661bd445c9c450e3be02d532 [file] [log] [blame]
/**
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
*/
class PsiElement {
public PsiElement getPrevSibling() {
return null;
}
public PsiElement getParent() {
return null;
}
}
public class TestCompletion {
public void method(PsiElement e) {
PsiElement anotherElement = <caret>
}
}