blob: 0d4e13794d01b668b91ffa4513ba0ae2590f87bf [file] [log] [blame]
/**
* @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>
}
}