mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 21:16:27 +03:00
b7414fa14a
8986: Add go to type definition for struct fields within struct r=matklad a=lf-
Example:
```rust
struct A;
struct B {
a/*<- cursor*/: A,
}
```
Go to type definition used to not work on this position. It now goes to
`A` as expected.
Co-authored-by: Jade <software@lfcode.ca>