2018-07-15 16:11:54 -05:00
|
|
|
error[E0277]: the trait bound `(): InOut<_>` is not satisfied
|
2019-09-15 23:58:20 -05:00
|
|
|
--> $DIR/issue-25076.rs:10:20
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | do_fold(bot(), ());
|
2019-09-15 23:58:20 -05:00
|
|
|
| ^^ the trait `InOut<_>` is not implemented for `()`
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
|
|
|
note: required by a bound in `do_fold`
|
|
|
|
--> $DIR/issue-25076.rs:5:18
|
|
|
|
|
|
|
|
|
LL | fn do_fold<B, F: InOut<B, Out=B>>(init: B, f: F) {}
|
|
|
|
| ^^^^^^^^^^^^^^^ required by this bound in `do_fold`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|