mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-13 16:50:08 +07:00
19 lines
260 B
Java
19 lines
260 B
Java
/**
|
|
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
|
*/
|
|
|
|
class Element {
|
|
public Project getProject() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Project {
|
|
}
|
|
|
|
public class TestCompletion {
|
|
public void method(Element e) {
|
|
Project project = <caret>
|
|
}
|
|
}
|