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