]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/coercion/coercion-slice.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / coercion / coercion-slice.stderr
index 47a77d4277370313f8a50ca978e41112cb005ae2..34caaed9de4f5bb79a44bc7217acfd60a7166426 100644 (file)
@@ -1,14 +1,11 @@
 error[E0308]: mismatched types
-  --> $DIR/coercion-slice.rs:14:21
+  --> $DIR/coercion-slice.rs:4:21
    |
 LL |     let _: &[i32] = [0];
    |                     ^^^
    |                     |
-   |                     expected &[i32], found array of 1 elements
+   |                     expected &[i32], found array `[{integer}; 1]`
    |                     help: consider borrowing here: `&[0]`
-   |
-   = note: expected type `&[i32]`
-              found type `[{integer}; 1]`
 
 error: aborting due to previous error