mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
error: expected expression, found `let` statement
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:8:19
|
|
|
|
|
LL | let _ = &&let Some(x) = Some(42);
|
|
| ^^^
|
|
|
|
error: expected expression, found `let` statement
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:13:47
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = &&let Some(x) = Some(42)] = 1 {
|
|
| ^^^
|
|
|
|
error: expected expression, found `let` statement
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:13:57
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = &&let Some(x) = Some(42)] = 1 {
|
|
| ^^^
|
|
|
|
error: expected expression, found `let` statement
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:23:23
|
|
|
|
|
LL | [1, 2, 3][let _ = ()];
|
|
| ^^^
|
|
|
|
error: expected expression, found `let` statement
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:32:47
|
|
|
|
|
LL | if let Some(elem) = _opt && [1, 2, 3][let _ = ()] = 1 {
|
|
| ^^^
|
|
|
|
error: expected expression, found `let` statement
|
|
--> $DIR/invalid-let-in-a-valid-let-context.rs:40:21
|
|
|
|
|
LL | let x = let y = 1;
|
|
| ^^^
|
|
|
|
error: aborting due to 6 previous errors
|
|
|