]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/typeck-default-trait-impl-constituent-types-2.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[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:26:5
3    |
4 LL |     is_mytrait::<(MyS2, MyS)>();
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^ within `(MyS2, MyS)`, the trait `MyTrait` is not implemented for `MyS2`
6    |
7    = help: the following implementations were found:
8              <MyS2 as MyTrait>
9    = note: required because it appears within the type `(MyS2, MyS)`
10 note: required by `is_mytrait`
11   --> $DIR/typeck-default-trait-impl-constituent-types-2.rs:21:1
12    |
13 LL | fn is_mytrait<T: MyTrait>() {}
14    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.