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