summaryrefslogtreecommitdiffstats
path: root/tests/ui/let-else/issue-94176.stderr
blob: 0cb97aceebfd5835311787240e3c1a3fa6a2b2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0308]: mismatched types
  --> $DIR/issue-94176.rs:5:32
   |
LL | pub fn test(a: Option<u32>) -> Option<u32> {
   |        ----                    ^^^^^^^^^^^ expected enum `Option`, found `()`
   |        |
   |        implicitly returns `()` as its body has no tail or `return` expression
   |
   = note:   expected enum `Option<u32>`
           found unit type `()`
help: consider returning the local binding `a`
   |
LL ~     println!("Foo");
LL +     a
   |

error: aborting due to previous error

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