2022-07-15 11:53:23 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-94176.rs:5:32
|
|
|
|
|
|
|
|
|
LL | pub fn test(a: Option<u32>) -> Option<u32> {
|
2023-01-02 20:00:33 -06:00
|
|
|
| ---- ^^^^^^^^^^^ expected `Option<u32>`, found `()`
|
2022-07-15 11:53:23 -05:00
|
|
|
| |
|
|
|
|
| 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
|
|
|
|
|
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-07-15 11:53:23 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|