]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closures/closure-expected.stderr
Rollup merge of #105694 - ouz-a:issue_105689, r=estebank
[rust.git] / src / test / ui / closures / closure-expected.stderr
1 error[E0277]: expected a `FnOnce<()>` closure, found `{integer}`
2   --> $DIR/closure-expected.rs:3:23
3    |
4 LL |     let y = x.or_else(4);
5    |               ------- ^ expected an `FnOnce<()>` closure, found `{integer}`
6    |               |
7    |               required by a bound introduced by this call
8    |
9    = help: the trait `FnOnce<()>` is not implemented for `{integer}`
10    = note: wrap the `{integer}` in a closure with no arguments: `|| { /* code */ }`
11 note: required by a bound in `Option::<T>::or_else`
12   --> $SRC_DIR/core/src/option.rs:LL:COL
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.