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
|
|
|
|
|
2024-02-26 16:49:25 +00:00
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, ASSUME_ALIGNMENT>,
|
2022-10-03 15:02:38 +09:00
|
|
|
| ^^^ 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
|
|
|
|
|
2024-02-26 16:49:25 +00:00
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, ASSUME_ALIGNMENT>,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Assume`, found `bool`
|
2023-03-09 20:49:05 +00:00
|
|
|
|
|
2024-06-19 08:25:58 +00:00
|
|
|
note: required by a const generic parameter in `BikeshedIntrinsicFrom`
|
2023-03-09 20:49:05 +00:00
|
|
|
--> $SRC_DIR/core/src/mem/transmutability.rs:LL:COL
|
2022-10-03 15:02:38 +09:00
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
error[E0308]: mismatched types
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/issue-101739-1.rs:8:41
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
2024-02-26 16:49:25 +00:00
|
|
|
LL | Dst: BikeshedIntrinsicFrom<Src, ASSUME_ALIGNMENT>,
|
|
|
|
| ^^^^^^^^^^^^^^^^ expected `Assume`, found `bool`
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2022-10-03 15:02:38 +09:00
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
Some errors have detailed explanations: E0308, E0412.
|
|
|
|
For more information about an error, try `rustc --explain E0308`.
|