Skip to content

Commit 91a09f5

Browse files
committed
Remove 'for_expr' test from inlay_hints.rs
1 parent a58441a commit 91a09f5

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

crates/ide/src/inlay_hints.rs

+1-14
Original file line numberDiff line numberDiff line change
@@ -505,19 +505,6 @@ fn main() {
505505
);
506506
}
507507

508-
#[test]
509-
fn for_expression() {
510-
check(
511-
r#"
512-
fn main() {
513-
let mut start = 0;
514-
//^^^^^^^^^ i32
515-
for increment in 0..2 { start += increment; }
516-
//^^^^^^^^^ i32
517-
}"#,
518-
);
519-
}
520-
521508
#[test]
522509
fn if_expr() {
523510
check(
@@ -963,7 +950,7 @@ fn main() {
963950
let mut data = Vec::new();
964951
//^^^^^^^^ Vec<&str>
965952
data.push("foo");
966-
for i in
953+
for i in
967954
968955
println!("Unit expr");
969956
}

0 commit comments

Comments
 (0)