mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
19 lines
674 B
Plaintext
19 lines
674 B
Plaintext
error[E0412]: cannot find type `Dst` in this scope
|
|
--> $DIR/issue-101739-1.rs:8:9
|
|
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
|
|
| ^^^ not found in this scope
|
|
|
|
error: the constant `ASSUME_ALIGNMENT` is not of type `Assume`
|
|
--> $DIR/issue-101739-1.rs:8:14
|
|
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: required by a bound in `BikeshedIntrinsicFrom`
|
|
--> $SRC_DIR/core/src/mem/transmutability.rs:LL:COL
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0412`.
|