mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
23 lines
708 B
Plaintext
23 lines
708 B
Plaintext
error[E0277]: `()` cannot be safely transmuted into `W<'_>`
|
|
--> $DIR/region-infer.rs:18:5
|
|
|
|
|
LL | test();
|
|
| ^^^^^^ the size of `()` is smaller than the size of `W<'_>`
|
|
|
|
|
note: required by a bound in `test`
|
|
--> $DIR/region-infer.rs:10:12
|
|
|
|
|
LL | fn test<'a>()
|
|
| ---- required by a bound in this function
|
|
LL | where
|
|
LL | W<'a>: BikeshedIntrinsicFrom<
|
|
| ____________^
|
|
LL | | (),
|
|
LL | | { Assume { alignment: true, lifetimes: true, safety: true, validity: true } },
|
|
LL | | >,
|
|
| |_________^ required by this bound in `test`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|