2022-07-08 05:25:50 -05:00
|
|
|
error: expected expression, found `let` statement
|
2022-08-20 13:40:08 -05:00
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:8:19
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
|
LL | let _ = &&let Some(x) = Some(42);
|
|
|
|
| ^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
2022-08-20 13:40:08 -05:00
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:13:47
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = &&let Some(x) = Some(42)] = 1 {
|
|
|
|
| ^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
2022-08-20 13:40:08 -05:00
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:13:57
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = &&let Some(x) = Some(42)] = 1 {
|
|
|
|
| ^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
2023-09-08 05:14:36 -05:00
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:13:12
|
|
|
|
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = &&let Some(x) = Some(42)] = 1 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2023-09-08 05:14:36 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:24:23
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
|
LL | [1, 2, 3][let _ = ()];
|
|
|
|
| ^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
2023-09-08 05:14:36 -05:00
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:33:47
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = ()] = 1 {
|
|
|
|
| ^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
2023-09-08 05:14:36 -05:00
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:33:12
|
|
|
|
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = ()] = 1 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2023-09-08 05:14:36 -05:00
|
|
|
|
|
|
|
error: expected expression, found `let` statement
|
|
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:42:21
|
2022-07-08 05:25:50 -05:00
|
|
|
|
|
|
|
|
LL | let x = let y = 1;
|
|
|
|
| ^^^
|
2023-09-13 10:00:31 -05:00
|
|
|
|
|
|
|
|
= note: only supported directly in conditions of `if` and `while` expressions
|
2022-07-08 05:25:50 -05:00
|
|
|
|
2023-09-08 05:14:36 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2022-07-08 05:25:50 -05:00
|
|
|
|