about summary refs log tree commit diff
path: root/tests/ui/half-open-range-patterns/range_pat_interactions2.stderr
AgeCommit message (Collapse)AuthorLines
2025-03-21remove `feature(inline_const_pat)`lcnr-43/+0
2024-11-23Update tests for new TRPL chapter orderChris Krycho-1/+1
2024-10-06On function and method calls in patterns, link to the bookEsteban Küber-1/+2
``` 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.
2024-09-18Add suggestions for expressions in patternsLieselotte-6/+17
2024-05-02Stabilize exclusive_rangeRoss Smyth-46/+2
2024-01-28Handle methodcalls & operators in patternsLieselotte-4/+71
2024-01-03Recover parentheses in range patternsLieselotte-13/+4
Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
2023-12-28Don't expect bodyless arms if the pattern can never be a never patternLieselotte-2/+2
2023-12-03Parse a pattern with no armNadrieril-2/+2
2023-01-11Move /src/test to /testsAlbert Larsan-0/+17