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.

17 lines
620 B
Plaintext
Raw 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: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
| ^^^ not found in this scope
error[E0308]: mismatched types
2022-10-03 03:51:18 -05:00
--> $DIR/issue-101739-1.rs:8:50
2022-10-03 01:02:38 -05:00
|
LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
| ^^^^^^^^^^^^^^^^ expected struct `Assume`, found `bool`
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0308, E0412.
For more information about an error, try `rustc --explain E0308`.