Skip to content

Commit

Permalink
remove duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
duncpro committed Oct 22, 2024
1 parent 21636ac commit b181cac
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/tools/rust-analyzer/crates/ide/src/goto_definition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -540,22 +540,6 @@ fn f(ch: char) -> bool {
);
}

#[test]
fn goto_def_range_pat_inclusive() {
check_name(
"RangeInclusive",
r#"
//- minicore: range
fn f(ch: char) -> bool {
match ch {
'a'..$0='z' => true,
_ => false
}
}
"#
);
}

#[test]
fn goto_def_expr_range() {
check_name(
Expand Down

0 comments on commit b181cac

Please sign in to comment.