2022-10-03 15:02:38 +09:00
|
|
|
error[E0412]: cannot find type `Dst` in this scope
|
2022-10-03 17:51:18 +09:00
|
|
|
--> $DIR/issue-101739-1.rs:8:9
|
2022-10-03 15:02:38 +09:00
|
|
|
|
|
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
2023-03-09 20:49:05 +00:00
|
|
|
error: the constant `ASSUME_ALIGNMENT` is not of type `Assume`
|
|
|
|
--> $DIR/issue-101739-1.rs:8:14
|
2022-10-03 15:02:38 +09:00
|
|
|
|
|
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
|
2023-03-09 22:08:48 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Assume`, found `bool`
|
2023-03-09 20:49:05 +00:00
|
|
|
|
|
|
|
|
note: required by a bound in `BikeshedIntrinsicFrom`
|
|
|
|
--> $SRC_DIR/core/src/mem/transmutability.rs:LL:COL
|
2022-10-03 15:02:38 +09:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2023-03-09 20:49:05 +00:00
|
|
|
For more information about this error, try `rustc --explain E0412`.
|