]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/coercion/coercion-slice.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coercion / coercion-slice.stderr
index ccd776e9879382b0bddada16fd54304b5e64482e..42dc954ffd5e7c454d7b6e810fb94a1cd4b48efc 100644 (file)
@@ -2,13 +2,11 @@ error[E0308]: mismatched types
   --> $DIR/coercion-slice.rs:4:21
    |
 LL |     let _: &[i32] = [0];
-   |                     ^^^
-   |                     |
-   |                     expected &[i32], found array of 1 element
-   |                     help: consider borrowing here: `&[0]`
-   |
-   = note: expected type `&[i32]`
-              found type `[{integer}; 1]`
+   |            ------   ^^^
+   |            |        |
+   |            |        expected `&[i32]`, found array `[{integer}; 1]`
+   |            |        help: consider borrowing here: `&[0]`
+   |            expected due to this
 
 error: aborting due to previous error