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