about summary refs log tree commit diff
path: root/tests/ui/array-slice-vec
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-05-09 08:16:26 +0000
committerbors <bors@rust-lang.org>2023-05-09 08:16:26 +0000
commitecd3dbab4ed82abfa05e22069261e565239449cf (patch)
tree03ec27f0a1765fca86fd800b41e83c39c0bd529d /tests/ui/array-slice-vec
parent7e7483d26e3cec7a44ef00cf7ae6c9c8c918bec6 (diff)
parent9d913eb9e4eb2a433e8755e1359c1cccb344ad3f (diff)
downloadrust-ecd3dbab4ed82abfa05e22069261e565239449cf.tar.gz
rust-ecd3dbab4ed82abfa05e22069261e565239449cf.zip
Auto merge of #111380 - Dylan-DPC:rollup-xiptbhn, r=Dylan-DPC
Rollup of 7 pull requests

Successful merges:

 - #110304 (Add GNU Property Note)
 - #110504 (Tweak borrow suggestion span)
 - #110583 (tweak "make mut" spans when assigning to locals)
 - #110694 (Implement builtin # syntax and use it for offset_of!(...))
 - #111120 (Suggest let for possible binding with ty)
 - #111252 (Min specialization improvements)
 - #111361 (Update books)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'tests/ui/array-slice-vec')
-rw-r--r--tests/ui/array-slice-vec/slice-mut-2.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/array-slice-vec/slice-mut-2.stderr b/tests/ui/array-slice-vec/slice-mut-2.stderr
index 5b040d3e4d3..c33919c41cd 100644
--- a/tests/ui/array-slice-vec/slice-mut-2.stderr
+++ b/tests/ui/array-slice-vec/slice-mut-2.stderr
@@ -7,7 +7,7 @@ LL |     let _ = &mut x[2..4];
 help: consider changing this to be a mutable reference
    |
 LL |     let x: &[isize] = &mut [1, 2, 3, 4, 5];
-   |                       ~~~~~~~~~~~~~~~~~~~~
+   |                        +++
 
 error: aborting due to previous error