]> git.lizzy.rs Git - rust.git/blob - tests/ui/block-result/issue-13428.stderr
Rollup merge of #107531 - GuillaumeGomez:inline-images-in-css, r=notriddle
[rust.git] / tests / 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 `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 `String`, found `()`
14    |    |
15    |    implicitly returns `()` as its body has no tail or `return` expression
16 LL |     "foobar".to_string()
17 LL |     ;
18    |     - help: remove this semicolon to return this value
19
20 error: aborting due to 2 previous errors
21
22 For more information about this error, try `rustc --explain E0308`.