Unnamed repository; edit this file 'description' to name the repository.
remove duplicate test
Duncan Proctor 2024-10-22
parent 271f64f · commit c679551
-rw-r--r--crates/ide/src/goto_definition.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/crates/ide/src/goto_definition.rs b/crates/ide/src/goto_definition.rs
index aa5c8d0041..1dbab2f3d2 100644
--- a/crates/ide/src/goto_definition.rs
+++ b/crates/ide/src/goto_definition.rs
@@ -541,22 +541,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(
"Range",