2019-02-03 16:48:16 -06:00
|
|
|
error[E0277]: the trait bound `dyn Foo<(char,), Output = ()>: Eq<dyn Foo<(), Output = ()>>` is not satisfied
|
2022-07-16 17:34:22 -05:00
|
|
|
--> $DIR/unboxed-closure-sugar-equiv.rs:44:11
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-07-16 17:34:22 -05:00
|
|
|
LL | dyn Foo(char) >();
|
|
|
|
| ^^^^^^^^^^^^^ the trait `Eq<dyn Foo<(), Output = ()>>` is not implemented for `dyn Foo<(char,), Output = ()>`
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
|
|
|
note: required by a bound in `eq`
|
|
|
|
--> $DIR/unboxed-closure-sugar-equiv.rs:16:28
|
|
|
|
|
|
|
|
|
LL | fn eq<A: ?Sized,B: ?Sized +Eq<A>>() { }
|
|
|
|
| ^^^^^ required by this bound in `eq`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|