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