mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 15:15:24 +00:00
add tests for goto on tuple fields
This commit is contained in:
parent
6c133017a8
commit
4f7da04c67
2 changed files with 33 additions and 1 deletions
|
@ -446,6 +446,22 @@ mod tests {
|
|||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn goto_for_tuple_fields() {
|
||||
check_goto(
|
||||
"
|
||||
//- /lib.rs
|
||||
struct Foo(u32);
|
||||
|
||||
fn bar() {
|
||||
let foo = Foo(0);
|
||||
foo.<|>0;
|
||||
}
|
||||
",
|
||||
"TUPLE_FIELD_DEF FileId(1) [11; 14)",
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn goto_definition_works_for_ufcs_inherent_methods() {
|
||||
check_goto(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue