blob: 9a1e35cc190a73e47534d47799c9c5571afb5e0e [file] [log] [blame]
interface PsiElement {
PsiElement findElementAt(int offset);
}
interface PsiFile extends PsiElement {
}
public class TestCompletion(){
void m(){
PsiElement e = <caret>
}
}