We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a58441a commit 91a09f5Copy full SHA for 91a09f5
crates/ide/src/inlay_hints.rs
@@ -505,19 +505,6 @@ fn main() {
505
);
506
}
507
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
517
-}"#,
518
- );
519
- }
520
-
521
#[test]
522
fn if_expr() {
523
check(
@@ -963,7 +950,7 @@ fn main() {
963
950
let mut data = Vec::new();
964
951
//^^^^^^^^ Vec<&str>
965
952
data.push("foo");
966
- for i in
953
+ for i in
967
954
968
955
println!("Unit expr");
969
956
0 commit comments