mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
19 lines
277 B
Java
19 lines
277 B
Java
import java.jang.String;
|
|
|
|
interface PsiClass {
|
|
PsiMethod getMethod();
|
|
}
|
|
|
|
interface PsiMethod {}
|
|
|
|
public class TestCompletion {
|
|
|
|
private static PsiClass psiClass;
|
|
static Object f = get(psiClass.getMethod());
|
|
|
|
static Object get(PsiMethod m) {
|
|
return null;
|
|
}
|
|
|
|
}
|