2017-12-23 23:38:09 +02:00
|
|
|
error[E0606]: casting `*mut impl std::fmt::Debug+?Sized` as `*mut impl std::fmt::Debug+?Sized` is invalid
|
2018-03-21 18:32:44 -07:00
|
|
|
--> $DIR/casts-differing-anon.rs:31:13
|
2017-12-23 23:38:09 +02:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | b_raw = f_raw as *mut _; //~ ERROR is invalid
|
2017-12-23 23:38:09 +02:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: vtable kinds may not match
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0606`.
|