rust/tests/ui/unboxed-closures/unboxed-closure-sugar-defau...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
747 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `dyn Foo<(isize,), isize, Output = ()>: Eq<dyn Foo<(isize,), Output = ()>>` is not satisfied
--> $DIR/unboxed-closure-sugar-default.rs:21:10
2018-08-08 20:28:26 +08:00
|
2019-05-29 02:46:13 +08:00
LL | eq::<dyn Foo<(isize,), isize, Output=()>, dyn Foo(isize)>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Eq<dyn Foo<(isize,), Output = ()>>` is not implemented for `dyn Foo<(isize,), isize, Output = ()>`
|
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 20:28:26 +08:00
error: aborting due to 1 previous error
2018-08-08 20:28:26 +08:00
For more information about this error, try `rustc --explain E0277`.