mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-25 08:39:26 +07:00
18 lines
224 B
Java
18 lines
224 B
Java
import java.jang.String;
|
|
|
|
interface PsiClass {
|
|
PsiMethod getMethod();
|
|
}
|
|
|
|
interface PsiMethod {}
|
|
|
|
public class TestCompletion {
|
|
|
|
static Object f = get(<caret>);
|
|
|
|
static Object get(PsiMethod m) {
|
|
return null;
|
|
}
|
|
|
|
}
|