rust/tests/ui/transmutability/issue-101739-1.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
665 B
Plaintext
Raw Permalink Normal View History

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