mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
24 lines
760 B
Plaintext
24 lines
760 B
Plaintext
error[E0277]: `()` cannot be safely transmuted into `W<'_>` in the defining scope of `Context`
|
|
--> $DIR/region-infer.rs:20:5
|
|
|
|
|
LL | test();
|
|
| ^^^^ `W<'_>` does not have a well-specified layout
|
|
|
|
|
note: required by a bound in `test`
|
|
--> $DIR/region-infer.rs:11:12
|
|
|
|
|
LL | fn test<'a>()
|
|
| ---- required by a bound in this function
|
|
LL | where
|
|
LL | W<'a>: BikeshedIntrinsicFrom<
|
|
| ____________^
|
|
LL | | (),
|
|
LL | | Context,
|
|
LL | | { Assume { alignment: true, lifetimes: true, safety: true, validity: true } },
|
|
LL | | >,
|
|
| |_________^ required by this bound in `test`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|