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