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