]> git.lizzy.rs Git - rust.git/blob - src/test/ui/block-result/issue-13428.stderr
fuzzify `fuzzy_match_tys`
[rust.git] / src / test / ui / block-result / issue-13428.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-13428.rs:3:13
3    |
4 LL | fn foo() -> String {
5    |    ---      ^^^^^^ expected struct `String`, found `()`
6    |    |
7    |    implicitly returns `()` as its body has no tail or `return` expression
8
9 error[E0308]: mismatched types
10   --> $DIR/issue-13428.rs:11:13
11    |
12 LL | fn bar() -> String {
13    |    ---      ^^^^^^ expected struct `String`, found `()`
14    |    |
15    |    implicitly returns `()` as its body has no tail or `return` expression
16 LL |     "foobar".to_string()
17 LL |     ;
18    |     - help: consider removing this semicolon
19
20 error: aborting due to 2 previous errors
21
22 For more information about this error, try `rustc --explain E0308`.