File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
crates/ra_assists/src/handlers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -665,7 +665,7 @@ mod tests {
665
665
}
666
666
fn foo(a: A) {
667
667
match a {
668
- // TODO: Fill this in <|>
668
+ // foo bar baz <|>
669
669
A::One => {}
670
670
// This is where the rest should be
671
671
}
@@ -678,7 +678,7 @@ mod tests {
678
678
}
679
679
fn foo(a: A) {
680
680
match <|>a {
681
- // TODO: Fill this in
681
+ // foo bar baz
682
682
A::One => {}
683
683
// This is where the rest should be
684
684
A::Two => {}
@@ -699,7 +699,7 @@ mod tests {
699
699
}
700
700
fn foo(a: A) {
701
701
match a {
702
- // TODO: Fill this in <|>
702
+ // foo bar baz <|>
703
703
}
704
704
}
705
705
"# ,
@@ -710,7 +710,7 @@ mod tests {
710
710
}
711
711
fn foo(a: A) {
712
712
match <|>a {
713
- // TODO: Fill this in
713
+ // foo bar baz
714
714
A::One => {}
715
715
A::Two => {}
716
716
}
You can’t perform that action at this time.
0 commit comments