]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/ptr-coercion.stderr
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / ptr-coercion.stderr
index 49dc4b36268c471727d7d92bfbb8604a8057c822..29b7e5da849d43ec112f61e91d00446ef083fe78 100644 (file)
@@ -2,7 +2,9 @@ error[E0308]: mismatched types
   --> $DIR/ptr-coercion.rs:7:25
    |
 LL |     let x: *mut isize = x;
-   |                         ^ types differ in mutability
+   |            ----------   ^ types differ in mutability
+   |            |
+   |            expected due to this
    |
    = note: expected raw pointer `*mut isize`
               found raw pointer `*const isize`
@@ -11,7 +13,9 @@ error[E0308]: mismatched types
   --> $DIR/ptr-coercion.rs:13:25
    |
 LL |     let x: *mut isize = &42;
-   |                         ^^^ types differ in mutability
+   |            ----------   ^^^ types differ in mutability
+   |            |
+   |            expected due to this
    |
    = note: expected raw pointer `*mut isize`
                 found reference `&isize`
@@ -20,7 +24,9 @@ error[E0308]: mismatched types
   --> $DIR/ptr-coercion.rs:19:25
    |
 LL |     let x: *mut isize = x;
-   |                         ^ types differ in mutability
+   |            ----------   ^ types differ in mutability
+   |            |
+   |            expected due to this
    |
    = note: expected raw pointer `*mut isize`
               found raw pointer `*const isize`