]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25076.stderr
Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen
[rust.git] / src / test / ui / issues / issue-25076.stderr
1 error[E0277]: the trait bound `(): InOut<_>` is not satisfied
2   --> $DIR/issue-25076.rs:10:20
3    |
4 LL | fn do_fold<B, F: InOut<B, Out=B>>(init: B, f: F) {}
5    |                  --------------- required by this bound in `do_fold`
6 ...
7 LL |     do_fold(bot(), ());
8    |                    ^^ the trait `InOut<_>` is not implemented for `()`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.