mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
17 lines
226 B
Java
17 lines
226 B
Java
public class TestCompletion {
|
|
void m() {
|
|
PsiElement someVar = get(<caret>);
|
|
}
|
|
|
|
static PsiElement get(Project project) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
interface Project {
|
|
}
|
|
|
|
interface PsiElement {
|
|
Project getProject();
|
|
}
|