We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example program:
struct S(i32); impl Default for S { fn default() -> Self { Self(42) } } fn main() { let s = S::default(); }
Jump-to-definition on the default call should (IMO) go to its implementation in the impl block, not in the definition of the Default trait.
default
impl
Default
The text was updated successfully, but these errors were encountered:
I think this is a dupe of #4558
Sorry, something went wrong.
Yes.
No branches or pull requests
Example program:
Jump-to-definition on the
default
call should (IMO) go to its implementation in theimpl
block, not in the definition of theDefault
trait.The text was updated successfully, but these errors were encountered: