]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-2995.stderr
Tweak "non-primitive cast" error
[rust.git] / src / test / ui / issues / issue-2995.stderr
index 68cb283e453d59ee15d0729ea272a08bc30fc0d8..9f5968399a37d8a730bced19a959071fba7e0bf9 100644 (file)
@@ -1,10 +1,8 @@
 error[E0605]: non-primitive cast: `*const isize` as `&isize`
   --> $DIR/issue-2995.rs:2:22
    |
-LL |     let _q: &isize = p as &isize; //~ ERROR non-primitive cast
-   |                      ^^^^^^^^^^^
-   |
-   = note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
+LL |     let _q: &isize = p as &isize;
+   |                      ^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
 
 error: aborting due to previous error