2019-02-03 16:48:16 -06:00
|
|
|
error[E0277]: the trait bound `dyn Foo<(isize,), isize, Output = ()>: Eq<dyn Foo<(isize,), Output = ()>>` is not satisfied
|
2022-07-16 17:34:22 -05:00
|
|
|
--> $DIR/unboxed-closure-sugar-default.rs:21:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | eq::<dyn Foo<(isize,), isize, Output=()>, dyn Foo(isize)>();
|
2022-07-16 17:34:22 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Eq<dyn Foo<(isize,), Output = ()>>` is not implemented for `dyn Foo<(isize,), isize, Output = ()>`
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
|
|
|
note: required by a bound in `eq`
|
|
|
|
--> $DIR/unboxed-closure-sugar-default.rs:14:40
|
|
|
|
|
|
|
|
|
LL | fn eq<A: ?Sized,B: ?Sized>() where A : Eq<B> { }
|
|
|
|
| ^^^^^ 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`.
|