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