summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/sugg-else-for-closure.stderr
blob: 09553b93c45ef1c0e87d0433d89be73ede86f019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error[E0308]: mismatched types
  --> $DIR/sugg-else-for-closure.rs:6:26
   |
LL |     let _s = y.unwrap_or(|| x.split('.').nth(1).unwrap());
   |                --------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `&str`, found closure
   |                |
   |                arguments to this method are incorrect
   |
   = note: expected reference `&str`
                found closure `[closure@$DIR/sugg-else-for-closure.rs:6:26: 6:28]`
help: the return type of this call is `[closure@$DIR/sugg-else-for-closure.rs:6:26: 6:28]` due to the type of the argument passed
  --> $DIR/sugg-else-for-closure.rs:6:14
   |
LL |     let _s = y.unwrap_or(|| x.split('.').nth(1).unwrap());
   |              ^^^^^^^^^^^^-------------------------------^
   |                          |
   |                          this argument influences the return type of `unwrap_or`
note: method defined here
  --> $SRC_DIR/core/src/option.rs:LL:COL
help: try calling `unwrap_or_else` instead
   |
LL |     let _s = y.unwrap_or_else(|| x.split('.').nth(1).unwrap());
   |                         +++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.