rust/tests/ui/rfcs/rfc-2497-if-let-chains/invalid-let-in-a-valid-let-context.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
2.4 KiB
Plaintext
Raw Normal View History

2022-07-08 05:25:50 -05:00
error: expected expression, found `let` statement
--> $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);
| ^^^
|
= 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
--> $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 {
| ^^^
|
= 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
--> $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 {
| ^^^
|
= 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
--> $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 {
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: only supported directly in conditions of `if` and `while` expressions
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 _ = ()];
| ^^^
|
= 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
--> $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 {
| ^^^
|
= 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
--> $DIR/invalid-let-in-a-valid-let-context.rs:33:12
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = ()] = 1 {
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: only supported directly in conditions of `if` and `while` expressions
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;
| ^^^
|
= note: only supported directly in conditions of `if` and `while` expressions
2022-07-08 05:25:50 -05:00
error: aborting due to 8 previous errors
2022-07-08 05:25:50 -05:00