mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
24 lines
347 B
Java
24 lines
347 B
Java
public class TestIndex {
|
|
|
|
Object o;
|
|
|
|
public void statMethod(PsiClass c) {
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
c.getMethod();
|
|
}
|
|
}
|
|
|
|
interface PsiClass {
|
|
PsiMethod getMethod();
|
|
}
|
|
|
|
interface PsiMethod {}
|