]> git.proxmox.com Git - rustc.git/blob - src/test/ui/auto-traits/typeck-default-trait-impl-constituent-types-2.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / auto-traits / typeck-default-trait-impl-constituent-types-2.stderr
1 error[E0277]: the trait bound `MyS2: MyTrait` is not satisfied in `(MyS2, MyS)`
2 --> $DIR/typeck-default-trait-impl-constituent-types-2.rs:17:18
3 |
4 LL | is_mytrait::<(MyS2, MyS)>();
5 | ^^^^^^^^^^^ within `(MyS2, MyS)`, the trait `MyTrait` is not implemented for `MyS2`
6 |
7 = note: required because it appears within the type `(MyS2, MyS)`
8 note: required by a bound in `is_mytrait`
9 --> $DIR/typeck-default-trait-impl-constituent-types-2.rs:12:18
10 |
11 LL | fn is_mytrait<T: MyTrait>() {}
12 | ^^^^^^^ required by this bound in `is_mytrait`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.