rust-lang / rust-lang/rust-analyzer
go-to-definition does on a method not work for trait impl.
Open
Nobody has claimed this yet.
A-ide
C-feature
- Dominant language
- Rust
- Stars
- 16.9k
- Forks
- 2.2k
- Avg merge
- 1d 12h
- Merged PRs (30d)
- 72
Description
code snippet to reproduce:
trait Foo {
fn bar(&self) -> u32;
}
impl Foo for () {
fn ba$0r(&self) -> u32 {
0
}
}
When invoking go-to-definition at $0 I would expect to move to the fn bar in trait Foo, however nothing happens.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the issue with the Rust trait and impl snippet, starting at the go-to-definition entry point for the method in the trait implementation. Trace how navigation resolves that method and verify that invoking it reaches the fn bar declaration in trait Foo.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- devtools
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 42/100