]> 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 019241d6874aac9dffa74940971a0a8ccbfca615..29b7e5da849d43ec112f61e91d00446ef083fe78 100644 (file)
@@ -2,28 +2,34 @@ 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 type `*mut isize`
-              found type `*const isize`
+   = note: expected raw pointer `*mut isize`
+              found raw pointer `*const isize`
 
 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 type `*mut isize`
-              found type `&isize`
+   = note: expected raw pointer `*mut isize`
+                found reference `&isize`
 
 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 type `*mut isize`
-              found type `*const isize`
+   = note: expected raw pointer `*mut isize`
+              found raw pointer `*const isize`
 
 error: aborting due to 3 previous errors