about summary refs log tree commit diff
path: root/src/test/ui/array-slice-vec
diff options
context:
space:
mode:
authorTakayuki Maeda <takoyaki0316@gmail.com>2022-08-16 03:42:58 +0900
committerTakayuki Maeda <takoyaki0316@gmail.com>2022-08-16 03:42:58 +0900
commit12e609ba3cb7a395601c3b6762682248b0a325ad (patch)
treed0a2e109da0e0205c062b33b7c746d0c0b77ca43 /src/test/ui/array-slice-vec
parent4d1b5f0d997b567b558a3fb88bd4724ba6e32f32 (diff)
downloadrust-12e609ba3cb7a395601c3b6762682248b0a325ad.tar.gz
rust-12e609ba3cb7a395601c3b6762682248b0a325ad.zip
use `span_suggestion` instead of `span_suggestion_verbose`
Diffstat (limited to 'src/test/ui/array-slice-vec')
-rw-r--r--src/test/ui/array-slice-vec/suggest-array-length.stderr18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/test/ui/array-slice-vec/suggest-array-length.stderr b/src/test/ui/array-slice-vec/suggest-array-length.stderr
index fdf6f82649a..9000f716028 100644
--- a/src/test/ui/array-slice-vec/suggest-array-length.stderr
+++ b/src/test/ui/array-slice-vec/suggest-array-length.stderr
@@ -20,40 +20,28 @@ error[E0658]: using `_` for array lengths is unstable
   --> $DIR/suggest-array-length.rs:5:22
    |
 LL |     const Foo: [i32; _] = [1, 2, 3];
-   |                      ^
+   |                      ^ help: consider specifying the array length: `3`
    |
    = note: see issue #85077 <https://github.com/rust-lang/rust/issues/85077> for more information
    = help: add `#![feature(generic_arg_infer)]` to the crate attributes to enable
-help: consider adding an array length
-   |
-LL |     const Foo: [i32; 3] = [1, 2, 3];
-   |                      ~
 
 error[E0658]: using `_` for array lengths is unstable
   --> $DIR/suggest-array-length.rs:8:20
    |
 LL |     let foo: [i32; _] = [1, 2, 3];
-   |                    ^
+   |                    ^ help: consider specifying the array length: `3`
    |
    = note: see issue #85077 <https://github.com/rust-lang/rust/issues/85077> for more information
    = help: add `#![feature(generic_arg_infer)]` to the crate attributes to enable
-help: consider adding an array length
-   |
-LL |     let foo: [i32; 3] = [1, 2, 3];
-   |                    ~
 
 error[E0658]: using `_` for array lengths is unstable
   --> $DIR/suggest-array-length.rs:11:20
    |
 LL |     let bar: [i32; _] = [0; 3];
-   |                    ^
+   |                    ^ help: consider specifying the array length: `3`
    |
    = note: see issue #85077 <https://github.com/rust-lang/rust/issues/85077> for more information
    = help: add `#![feature(generic_arg_infer)]` to the crate attributes to enable
-help: consider adding an array length
-   |
-LL |     let bar: [i32; 3] = [0; 3];
-   |                    ~
 
 error: aborting due to 6 previous errors