2023-04-07 05:25:56 +00:00
|
|
|
error[E0277]: `&Unit` cannot be safely transmuted into `&Unit` in the defining scope of `assert::Context`
|
2023-04-09 21:22:18 +00:00
|
|
|
--> $DIR/references.rs:29:52
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
|
|
|
LL | assert::is_maybe_transmutable::<&'static Unit, &'static Unit>();
|
2023-04-07 05:25:56 +00:00
|
|
|
| ^^^^^^^^^^^^^ `&Unit` does not have a well-specified layout
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
|
|
|
note: required by a bound in `is_maybe_transmutable`
|
2023-04-09 21:22:18 +00:00
|
|
|
--> $DIR/references.rs:16:14
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
2022-08-18 19:39:14 +00:00
|
|
|
LL | pub fn is_maybe_transmutable<Src, Dst>()
|
2023-02-21 05:21:07 +00:00
|
|
|
| --------------------- required by a bound in this function
|
2022-08-18 19:39:14 +00:00
|
|
|
LL | where
|
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, Context, {
|
|
|
|
| ______________^
|
|
|
|
LL | | Assume {
|
|
|
|
LL | | alignment: true,
|
|
|
|
LL | | lifetimes: true,
|
|
|
|
... |
|
|
|
|
LL | | }
|
|
|
|
LL | | }>
|
|
|
|
| |__________^ required by this bound in `is_maybe_transmutable`
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|