]> git.proxmox.com Git - rustc.git/blob - tests/ui/transmutability/issue-101739-1.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / transmutability / issue-101739-1.stderr
1 error[E0412]: cannot find type `Dst` in this scope
2 --> $DIR/issue-101739-1.rs:8:9
3 |
4 LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
5 | ^^^ not found in this scope
6
7 error[E0308]: mismatched types
8 --> $DIR/issue-101739-1.rs:8:50
9 |
10 LL | Dst: BikeshedIntrinsicFrom<Src, Context, ASSUME_ALIGNMENT>,
11 | ^^^^^^^^^^^^^^^^ expected struct `Assume`, found `bool`
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0308, E0412.
16 For more information about an error, try `rustc --explain E0308`.