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