We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.1.0-RC2
In a REPL session:
import annot
and press TAB (or invoke code completion in IDE)
No completions are suggested
Names of top level packages should be included in completions. In the particular case above the code should expand to
import annotation
The problem is not specific to predef or stdlib and also occurs for packages containing code defined by users
The text was updated successfully, but these errors were encountered:
import <ident>
Fixed by #14069 - the other problem mentioned in the PR is in a separate issue (package objects)
Sorry, something went wrong.
Complete when improting same symbol multiple times
98198e9
This is related to scala#13623 - since it seems that Predef might be imported more than once, but this doesn't yet solve the issue.
No branches or pull requests
Compiler version
3.1.0-RC2
Minimized code
In a REPL session:
and press TAB (or invoke code completion in IDE)
Output
No completions are suggested
Expectation
Names of top level packages should be included in completions. In the particular case above the code should expand to
The problem is not specific to predef or stdlib and also occurs for packages containing code defined by users
The text was updated successfully, but these errors were encountered: