2021-09-04 21:35:59 -05:00
|
|
|
error: expected expression, found `+`
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:8:9
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | {2} + {2}
|
2021-09-04 21:35:59 -05:00
|
|
|
| ^ expected expression
|
2021-06-28 13:22:47 -05:00
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({2}) + {2}
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
2021-09-01 10:54:06 -05:00
|
|
|
error: leading `+` is not supported
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:13:9
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | {2} + 2
|
2021-09-01 10:54:06 -05:00
|
|
|
| ^ unexpected `+`
|
2021-06-28 13:22:47 -05:00
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({2}) + 2
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
2021-09-04 21:35:59 -05:00
|
|
|
error: expected expression, found `+`
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:19:12
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | { 42 } + foo;
|
2021-09-04 21:35:59 -05:00
|
|
|
| ^ expected expression
|
2021-06-28 13:22:47 -05:00
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({ 42 }) + foo;
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
2019-04-30 22:37:42 -05:00
|
|
|
error: expected expression, found `>`
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:32:7
|
2019-04-29 16:35:09 -05:00
|
|
|
|
|
|
|
|
LL | } > 0
|
2019-04-30 22:37:42 -05:00
|
|
|
| ^ expected expression
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2019-05-02 17:53:09 -05:00
|
|
|
help: parentheses are required to parse this as an expression
|
2019-04-29 16:35:09 -05:00
|
|
|
|
|
2021-06-21 21:07:19 -05:00
|
|
|
LL ~ (match x {
|
2019-04-29 16:35:09 -05:00
|
|
|
LL | _ => 1,
|
2021-06-21 21:07:19 -05:00
|
|
|
LL ~ }) > 0
|
2019-04-29 16:35:09 -05:00
|
|
|
|
|
|
|
|
|
2022-02-24 18:02:38 -06:00
|
|
|
error: expected parameter name, found `{`
|
|
|
|
--> $DIR/expr-as-stmt.rs:41:16
|
|
|
|
|
|
|
|
|
LL | { true } | { true }
|
|
|
|
| ^ expected parameter name
|
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({ true }) | { true }
|
|
|
|
| + +
|
|
|
|
|
2022-12-03 13:02:39 -06:00
|
|
|
error: expected expression, found `+`
|
|
|
|
--> $DIR/expr-as-stmt.rs:69:26
|
|
|
|
|
|
|
|
|
LL | match () { () => 1 } + match () { () => 1 }
|
|
|
|
| ^ expected expression
|
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | (match () { () => 1 }) + match () { () => 1 }
|
|
|
|
| + +
|
|
|
|
|
|
|
|
error: expected expression, found `+`
|
|
|
|
--> $DIR/expr-as-stmt.rs:75:18
|
|
|
|
|
|
|
|
|
LL | unsafe { 1 } + unsafe { 1 }
|
|
|
|
| ^ expected expression
|
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | (unsafe { 1 }) + unsafe { 1 }
|
|
|
|
| + +
|
|
|
|
|
2022-02-24 18:02:38 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:64:7
|
|
|
|
|
|
|
|
|
LL | { foo() } || { true }
|
|
|
|
| ^^^^^- help: consider using a semicolon here: `;`
|
|
|
|
| |
|
|
|
|
| expected `()`, found `i32`
|
|
|
|
|
2019-04-22 21:37:23 -05:00
|
|
|
error[E0308]: mismatched types
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:8:6
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | {2} + {2}
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^ expected `()`, found integer
|
2021-02-04 14:22:01 -06:00
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | {return 2;} + {2}
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++ +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:13:6
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | {2} + 2
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^ expected `()`, found integer
|
2021-02-04 14:22:01 -06:00
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | {return 2;} + 2
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++ +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:19:7
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | { 42 } + foo;
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^ expected `()`, found integer
|
2021-02-04 14:22:01 -06:00
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | { return 42; } + foo;
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++ +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:25:7
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | { 3 } * 3
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^ expected `()`, found integer
|
2021-02-04 14:22:01 -06:00
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | { return 3; } * 3
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++ +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
error[E0614]: type `{integer}` cannot be dereferenced
|
2021-06-10 22:39:05 -05:00
|
|
|
--> $DIR/expr-as-stmt.rs:25:11
|
2019-04-22 21:37:23 -05:00
|
|
|
|
|
|
|
|
LL | { 3 } * 3
|
2021-06-28 13:22:47 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({ 3 }) * 3
|
2021-06-21 21:07:19 -05:00
|
|
|
| + +
|
2019-04-22 21:37:23 -05:00
|
|
|
|
2021-09-06 17:30:20 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:36:6
|
|
|
|
|
|
|
|
|
LL | {2} - 2
|
|
|
|
| ^ expected `()`, found integer
|
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | {return 2;} - 2
|
|
|
|
| ++++++ +
|
|
|
|
|
|
|
|
error[E0600]: cannot apply unary operator `-` to type `u32`
|
|
|
|
--> $DIR/expr-as-stmt.rs:36:9
|
|
|
|
|
|
|
|
|
LL | {2} - 2
|
|
|
|
| ^^^ cannot apply unary operator `-`
|
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({2}) - 2
|
|
|
|
| + +
|
|
|
|
|
2022-02-24 18:02:38 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:41:7
|
|
|
|
|
|
|
|
|
LL | { true } | { true }
|
|
|
|
| ^^^^ expected `()`, found `bool`
|
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | { return true; } | { true }
|
|
|
|
| ++++++ +
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:46:7
|
|
|
|
|
|
|
|
|
LL | { true } && { true }
|
|
|
|
| ^^^^ expected `()`, found `bool`
|
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | { return true; } && { true }
|
|
|
|
| ++++++ +
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:46:14
|
|
|
|
|
|
|
|
|
LL | fn revenge_from_mars() -> bool {
|
|
|
|
| ---- expected `bool` because of return type
|
|
|
|
LL | { true } && { true }
|
|
|
|
| ^^^^^^^^^^^ expected `bool`, found `&&bool`
|
|
|
|
|
|
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({ true }) && { true }
|
|
|
|
| + +
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:51:7
|
|
|
|
|
|
|
|
|
LL | { true } || { true }
|
|
|
|
| ^^^^ expected `()`, found `bool`
|
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | { return true; } || { true }
|
|
|
|
| ++++++ +
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:51:14
|
|
|
|
|
|
|
|
|
LL | fn attack_from_mars() -> bool {
|
|
|
|
| ---- expected `bool` because of return type
|
|
|
|
LL | { true } || { true }
|
|
|
|
| ^^^^^^^^^^^ expected `bool`, found closure
|
|
|
|
|
|
|
|
|
= note: expected type `bool`
|
2023-09-09 01:36:50 -05:00
|
|
|
found closure `{closure@$DIR/expr-as-stmt.rs:51:14: 51:16}`
|
2022-02-24 18:02:38 -06:00
|
|
|
help: parentheses are required to parse this as an expression
|
|
|
|
|
|
|
|
|
LL | ({ true }) || { true }
|
|
|
|
| + +
|
|
|
|
|
2022-12-03 13:02:39 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:69:5
|
|
|
|
|
|
|
|
|
LL | match () { () => 1 } + match () { () => 1 }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^- help: consider using a semicolon here
|
|
|
|
| |
|
|
|
|
| expected `()`, found integer
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/expr-as-stmt.rs:75:14
|
|
|
|
|
|
|
|
|
LL | unsafe { 1 } + unsafe { 1 }
|
|
|
|
| ^ expected `()`, found integer
|
|
|
|
|
|
|
|
|
help: you might have meant to return this value
|
|
|
|
|
|
|
|
|
LL | unsafe { return 1; } + unsafe { 1 }
|
|
|
|
| ++++++ +
|
|
|
|
|
|
|
|
error: aborting due to 22 previous errors
|
2019-04-22 21:37:23 -05:00
|
|
|
|
2021-09-06 17:30:20 -05:00
|
|
|
Some errors have detailed explanations: E0308, E0600, E0614.
|
2019-04-22 21:37:23 -05:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|