2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2019-03-07 01:54:35 +00:00
|
|
|
--> $DIR/if-without-else-as-fn-expr.rs:2:5
|
|
|
|
|
|
|
|
|
LL | fn foo(bar: usize) -> usize {
|
2019-03-07 22:08:20 +00:00
|
|
|
| ----- expected `usize` because of this return type
|
2019-03-07 01:54:35 +00:00
|
|
|
LL | / if bar % 5 == 0 {
|
|
|
|
LL | | return 3;
|
|
|
|
LL | | }
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____^ expected `usize`, found `()`
|
2019-03-07 01:54:35 +00:00
|
|
|
|
|
2019-03-07 22:08:20 +00:00
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
2019-03-07 01:54:35 +00:00
|
|
|
|
2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2019-09-01 01:34:50 +00:00
|
|
|
--> $DIR/if-without-else-as-fn-expr.rs:9:20
|
2019-03-07 22:37:18 +00:00
|
|
|
|
|
|
|
|
LL | let x: usize = if bar % 5 == 0 {
|
|
|
|
| _________-__________^
|
|
|
|
| | |
|
|
|
|
| | expected because of this assignment
|
|
|
|
LL | | return 3;
|
|
|
|
LL | | };
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____^ expected `usize`, found `()`
|
2019-03-07 22:37:18 +00:00
|
|
|
|
|
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
|
|
|
|
2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2019-09-01 01:34:50 +00:00
|
|
|
--> $DIR/if-without-else-as-fn-expr.rs:17:5
|
2019-03-07 22:37:18 +00:00
|
|
|
|
|
|
|
|
LL | fn foo3(bar: usize) -> usize {
|
|
|
|
| ----- expected `usize` because of this return type
|
|
|
|
LL | / if bar % 5 == 0 {
|
|
|
|
LL | | 3
|
|
|
|
LL | | }
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____^ expected `usize`, found `()`
|
2019-03-07 22:37:18 +00:00
|
|
|
|
|
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
|
|
|
|
2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2019-09-01 01:34:50 +00:00
|
|
|
--> $DIR/if-without-else-as-fn-expr.rs:24:5
|
2019-03-19 03:47:07 +00:00
|
|
|
|
|
|
|
|
LL | fn foo_let(bar: usize) -> usize {
|
|
|
|
| ----- expected `usize` because of this return type
|
|
|
|
LL | / if let 0 = 1 {
|
|
|
|
LL | | return 3;
|
|
|
|
LL | | }
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____^ expected `usize`, found `()`
|
2019-03-19 03:47:07 +00:00
|
|
|
|
|
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
|
|
|
|
2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2019-09-01 01:34:50 +00:00
|
|
|
--> $DIR/if-without-else-as-fn-expr.rs:31:20
|
2019-03-19 03:47:07 +00:00
|
|
|
|
|
|
|
|
LL | let x: usize = if let 0 = 1 {
|
|
|
|
| _________-__________^
|
|
|
|
| | |
|
|
|
|
| | expected because of this assignment
|
|
|
|
LL | | return 3;
|
|
|
|
LL | | };
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____^ expected `usize`, found `()`
|
2019-03-19 03:47:07 +00:00
|
|
|
|
|
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
|
|
|
|
2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2019-09-01 01:34:50 +00:00
|
|
|
--> $DIR/if-without-else-as-fn-expr.rs:39:5
|
2019-03-19 03:47:07 +00:00
|
|
|
|
|
|
|
|
LL | fn foo3_let(bar: usize) -> usize {
|
|
|
|
| ----- expected `usize` because of this return type
|
|
|
|
LL | / if let 0 = 1 {
|
|
|
|
LL | | 3
|
|
|
|
LL | | }
|
2019-11-15 17:37:01 +00:00
|
|
|
| |_____^ expected `usize`, found `()`
|
2019-03-19 03:47:07 +00:00
|
|
|
|
|
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
|
|
|
|
2019-09-01 01:34:50 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2019-03-07 01:54:35 +00:00
|
|
|
|
2019-09-01 01:34:50 +00:00
|
|
|
For more information about this error, try `rustc --explain E0317`.
|