mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
20 lines
349 B
Java
20 lines
349 B
Java
/**
|
|
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
|
*/
|
|
|
|
class LocalFileSystem {
|
|
public LocalFileSystem returnSelf() {
|
|
return this;
|
|
}
|
|
|
|
public static LocalFileSystem getInstance() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public class TestCompletion {
|
|
public void method(LocalFileSystem lfs) {
|
|
LocalFileSystem anotherLfs = <caret>
|
|
}
|
|
}
|