2017-06-24 00:43:35 +00:00
|
|
|
error[E0308]: mismatched types
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/consider-removing-last-semi.rs:3:15
|
2017-06-24 00:43:35 +00:00
|
|
|
|
|
2020-07-02 05:32:12 +00:00
|
|
|
LL | pub fn f() -> String {
|
2023-01-03 02:00:33 +00:00
|
|
|
| - ^^^^^^ expected `String`, found `()`
|
2020-07-02 05:32:12 +00:00
|
|
|
| |
|
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
2018-12-30 21:55:00 +00:00
|
|
|
LL | 0u8;
|
|
|
|
LL | "bla".to_string();
|
2022-10-04 08:46:12 +00:00
|
|
|
| - help: remove this semicolon to return this value
|
2017-06-24 00:43:35 +00:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/consider-removing-last-semi.rs:8:15
|
2017-06-24 00:43:35 +00:00
|
|
|
|
|
2020-07-02 05:32:12 +00:00
|
|
|
LL | pub fn g() -> String {
|
2023-01-03 02:00:33 +00:00
|
|
|
| - ^^^^^^ expected `String`, found `()`
|
2020-07-02 05:32:12 +00:00
|
|
|
| |
|
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
2018-12-30 21:55:00 +00:00
|
|
|
LL | "this won't work".to_string();
|
|
|
|
LL | "removeme".to_string();
|
2022-10-04 08:46:12 +00:00
|
|
|
| - help: remove this semicolon to return this value
|
2017-06-24 00:43:35 +00:00
|
|
|
|
2021-10-14 18:28:28 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/consider-removing-last-semi.rs:13:25
|
|
|
|
|
|
|
|
|
LL | pub fn macro_tests() -> u32 {
|
|
|
|
| ----------- ^^^ expected `u32`, found `()`
|
|
|
|
| |
|
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
...
|
|
|
|
LL | mac!();
|
2022-10-04 08:46:12 +00:00
|
|
|
| - help: remove this semicolon to return this value
|
2021-10-14 18:28:28 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2017-06-24 00:43:35 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|