]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/typeck-default-trait-impl-constituent-types-2.stderr
Auto merge of #73285 - Mark-Simulacrum:clippy-fail, r=RalfJung,oli-obk
[rust.git] / src / test / ui / typeck / 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    = help: the following implementations were found:
11              <MyS2 as MyTrait>
12    = note: required because it appears within the type `(MyS2, MyS)`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.