2017-12-10 13:47:55 -06:00
|
|
|
error[E0308]: mismatched types
|
2022-10-04 03:46:12 -05:00
|
|
|
--> $DIR/liveness-return-last-stmt-semi.rs:6:19
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn no_return() -> i32 {}
|
2019-11-15 11:37:01 -06:00
|
|
|
| --------- ^^^ expected `i32`, found `()`
|
2018-12-30 17:41:19 -06:00
|
|
|
| |
|
2019-08-08 18:56:57 -05:00
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2022-10-04 03:46:12 -05:00
|
|
|
--> $DIR/liveness-return-last-stmt-semi.rs:8:19
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn bar(x: u32) -> u32 {
|
2019-11-15 11:37:01 -06:00
|
|
|
| --- ^^^ expected `u32`, found `()`
|
2018-12-30 17:41:19 -06:00
|
|
|
| |
|
2019-08-08 18:56:57 -05:00
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
2018-12-30 15:55:00 -06:00
|
|
|
LL | x * 2;
|
2022-10-04 03:46:12 -05:00
|
|
|
| - help: remove this semicolon to return this value
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2022-10-04 03:46:12 -05:00
|
|
|
--> $DIR/liveness-return-last-stmt-semi.rs:12:19
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn baz(x: u64) -> u32 {
|
2019-11-15 11:37:01 -06:00
|
|
|
| --- ^^^ expected `u32`, found `()`
|
2018-12-30 17:41:19 -06:00
|
|
|
| |
|
2019-08-08 18:56:57 -05:00
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2021-07-16 09:54:47 -05:00
|
|
|
error[E0308]: mismatched types
|
2022-10-04 03:46:12 -05:00
|
|
|
--> $DIR/liveness-return-last-stmt-semi.rs:3:41
|
2021-07-16 09:54:47 -05:00
|
|
|
|
|
|
|
|
LL | macro_rules! test { () => { fn foo() -> i32 { 1; } } }
|
2021-10-14 13:28:28 -05:00
|
|
|
| --- ^^^ expected `i32`, found `()`
|
|
|
|
| |
|
2021-07-16 09:54:47 -05:00
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
...
|
|
|
|
LL | test!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ------- in this macro invocation
|
2021-07-16 09:54:47 -05:00
|
|
|
|
|
|
|
|
= note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
2017-12-10 13:47:55 -06:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|