]> git.proxmox.com Git - rustc.git/blame - src/test/ui/union/issue-81199.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / union / issue-81199.stderr
CommitLineData
064997fb 1error[E0277]: the trait bound `T: Pointee` is not satisfied
a2a8927a
XL
2 --> $DIR/issue-81199.rs:5:17
3 |
4LL | components: PtrComponents<T>,
064997fb 5 | ^^^^^^^^^^^^^^^^ the trait `Pointee` is not implemented for `T`
a2a8927a 6 |
064997fb
FG
7note: required by a bound in `PtrComponents`
8 --> $DIR/issue-81199.rs:10:25
a2a8927a
XL
9 |
10LL | struct PtrComponents<T: Pointee + ?Sized> {
064997fb 11 | ^^^^^^^ required by this bound in `PtrComponents`
a2a8927a
XL
12help: consider further restricting this bound
13 |
14LL | union PtrRepr<T: ?Sized + Pointee> {
15 | +++++++++
a2a8927a
XL
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0277`.