2019-02-04 00:48:16 +02:00
|
|
|
error[E0277]: the trait bound `dyn Foo<(isize,), isize, Output = ()>: Eq<dyn Foo<(isize,), Output = ()>>` is not satisfied
|
2022-07-16 22:34:22 +00:00
|
|
|
--> $DIR/unboxed-closure-sugar-default.rs:21:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | eq::<dyn Foo<(isize,), isize, Output=()>, dyn Foo(isize)>();
|
2022-07-16 22:34:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Eq<dyn Foo<(isize,), Output = ()>>` is not implemented for `dyn Foo<(isize,), isize, Output = ()>`
|
2021-07-31 09:26:55 -07: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 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|