about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-07-30 23:18:12 +0000
committerbors <bors@rust-lang.org>2021-07-30 23:18:12 +0000
commit199d1aebe472585e1066334d5e1f740f02eba661 (patch)
treee51d508876c7a8ee511aab04dd6132c0b4f2aa8e /src/tools
parent1f0a591b3a5963a0ab11a35dc525ad9d46f612e4 (diff)
parent0b8f192cfee2f107867e7b9a0b0f781a5cb48787 (diff)
downloadrust-199d1aebe472585e1066334d5e1f740f02eba661.tar.gz
rust-199d1aebe472585e1066334d5e1f740f02eba661.zip
Auto merge of #86754 - estebank:use-multispans-more, r=varkor
Use `multipart_suggestions` more

Built on top of #86532
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/clippy/tests/ui/crashes/ice-6250.stderr10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
index c38727316cd..320b3bb42f8 100644
--- a/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
+++ b/src/tools/clippy/tests/ui/crashes/ice-6250.stderr
@@ -25,10 +25,12 @@ error[E0308]: mismatched types
   --> $DIR/ice-6250.rs:12:14
    |
 LL |         Some(reference) = cache.data.get(key) {
-   |              ^^^^^^^^^
-   |              |
-   |              expected integer, found `&i32`
-   |              help: consider dereferencing the borrow: `*reference`
+   |              ^^^^^^^^^ expected integer, found `&i32`
+   |
+help: consider dereferencing the borrow
+   |
+LL |         Some(*reference) = cache.data.get(key) {
+   |              ^
 
 error[E0308]: mismatched types
   --> $DIR/ice-6250.rs:12:9