]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-25076.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / issues / issue-25076.stderr
CommitLineData
8faf50e0 1error[E0277]: the trait bound `(): InOut<_>` is not satisfied
e1599b0c 2 --> $DIR/issue-25076.rs:10:20
8faf50e0 3 |
e1599b0c 4LL | do_fold(bot(), ());
c295e0f8
XL
5 | ------- ^^ the trait `InOut<_>` is not implemented for `()`
6 | |
7 | required by a bound introduced by this call
94222f64
XL
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`
8faf50e0
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0277`.