]> git.proxmox.com Git - rustc.git/blame_incremental - src/test/ui/issues/issue-25076.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-25076.stderr
... / ...
CommitLineData
1error[E0277]: the trait bound `(): InOut<_>` is not satisfied
2 --> $DIR/issue-25076.rs:10:20
3 |
4LL | do_fold(bot(), ());
5 | ------- ^^ the trait `InOut<_>` is not implemented for `()`
6 | |
7 | required by a bound introduced by this call
8 |
9note: required by a bound in `do_fold`
10 --> $DIR/issue-25076.rs:5:18
11 |
12LL | fn do_fold<B, F: InOut<B, Out=B>>(init: B, f: F) {}
13 | ^^^^^^^^^^^^^^^ required by this bound in `do_fold`
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0277`.