about summary refs log tree commit diff
path: root/tests/ui/resolve/issue-10200.rs
AgeCommit message (Collapse)AuthorLines
2024-10-06On function and method calls in patterns, link to the bookEsteban Küber-1/+1
``` 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.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+9