]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closure-expected.stderr
Auto merge of #87489 - bdalrhm:rustdoc-line-num, r=CraftSpider
[rust.git] / src / test / ui / 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    = help: the trait `FnOnce<()>` is not implemented for `{integer}`
8    = note: wrap the `{integer}` in a closure with no arguments: `|| { /* code */ }`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.