Skip to content

Commit c9e45e4

Browse files
committed
Auto merge of rust-lang#86754 - estebank:use-multispans-more, r=varkor
Use `multipart_suggestions` more Built on top of rust-lang#86532
2 parents 0af50b4 + 9a6ae78 commit c9e45e4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/ui/crashes/ice-6250.stderr

+6-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ error[E0308]: mismatched types
2525
--> $DIR/ice-6250.rs:12:14
2626
|
2727
LL | Some(reference) = cache.data.get(key) {
28-
| ^^^^^^^^^
29-
| |
30-
| expected integer, found `&i32`
31-
| help: consider dereferencing the borrow: `*reference`
28+
| ^^^^^^^^^ expected integer, found `&i32`
29+
|
30+
help: consider dereferencing the borrow
31+
|
32+
LL | Some(*reference) = cache.data.get(key) {
33+
| ^
3234

3335
error[E0308]: mismatched types
3436
--> $DIR/ice-6250.rs:12:9

0 commit comments

Comments
 (0)