]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closure-expected.stderr
Move generic error message to separate branches
[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    |               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
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.