7f5548fa8b
``` error: expected a pattern, found an expression --> f889.rs:3:13 | 3 | let (x, y.drop()) = (1, 2); //~ ERROR | ^^^^^^^^ not a pattern | = note: arbitrary expressions are not allowed in patterns: <https://doc.rust-lang.org/book/ch18-00-patterns.html> error[E0532]: expected a pattern, found a function call --> f889.rs:2:13 | 2 | let (x, drop(y)) = (1, 2); //~ ERROR | ^^^^ not a tuple struct or tuple variant | = note: function calls are not allowed in patterns: <https://doc.rust-lang.org/book/ch18-00-patterns.html> ``` Fix #97200.
18 lines
542 B
Plaintext
18 lines
542 B
Plaintext
error: expected a pattern, found an expression
|
|
--> $DIR/pat-lt-bracket-5.rs:2:9
|
|
|
|
|
LL | let v[0] = v[1];
|
|
| ^^^^ not a pattern
|
|
|
|
|
= note: arbitrary expressions are not allowed in patterns: <https://doc.rust-lang.org/book/ch18-00-patterns.html>
|
|
|
|
error[E0425]: cannot find value `v` in this scope
|
|
--> $DIR/pat-lt-bracket-5.rs:2:16
|
|
|
|
|
LL | let v[0] = v[1];
|
|
| ^ not found in this scope
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|