rust/src/test/ui/issues/issue-25076.stderr

13 lines
447 B
Plaintext
Raw Normal View History

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