]> git.lizzy.rs Git - rust.git/blob - tests/ui/block-result/consider-removing-last-semi.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / block-result / consider-removing-last-semi.stderr
1 error[E0308]: mismatched types
2   --> $DIR/consider-removing-last-semi.rs:3:15
3    |
4 LL | pub fn f() -> String {
5    |        -      ^^^^^^ expected struct `String`, found `()`
6    |        |
7    |        implicitly returns `()` as its body has no tail or `return` expression
8 LL |     0u8;
9 LL |     "bla".to_string();
10    |                      - help: remove this semicolon to return this value
11
12 error[E0308]: mismatched types
13   --> $DIR/consider-removing-last-semi.rs:8:15
14    |
15 LL | pub fn g() -> String {
16    |        -      ^^^^^^ expected struct `String`, found `()`
17    |        |
18    |        implicitly returns `()` as its body has no tail or `return` expression
19 LL |     "this won't work".to_string();
20 LL |     "removeme".to_string();
21    |                           - help: remove this semicolon to return this value
22
23 error[E0308]: mismatched types
24   --> $DIR/consider-removing-last-semi.rs:13:25
25    |
26 LL | pub fn macro_tests() -> u32 {
27    |        -----------      ^^^ expected `u32`, found `()`
28    |        |
29    |        implicitly returns `()` as its body has no tail or `return` expression
30 ...
31 LL |     mac!();
32    |           - help: remove this semicolon to return this value
33
34 error: aborting due to 3 previous errors
35
36 For more information about this error, try `rustc --explain E0308`.