| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-03-21 | remove `feature(inline_const_pat)` | lcnr | -43/+0 | |
| 2024-11-23 | Update tests for new TRPL chapter order | Chris Krycho | -1/+1 | |
| 2024-10-06 | On function and method calls in patterns, link to the book | Esteban 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-18 | Add suggestions for expressions in patterns | Lieselotte | -6/+17 | |
| 2024-05-02 | Stabilize exclusive_range | Ross Smyth | -46/+2 | |
| 2024-01-28 | Handle methodcalls & operators in patterns | Lieselotte | -4/+71 | |
| 2024-01-03 | Recover parentheses in range patterns | Lieselotte | -13/+4 | |
| Co-authored-by: León Orell Valerian Liehr <me@fmease.dev> | ||||
| 2023-12-28 | Don't expect bodyless arms if the pattern can never be a never pattern | Lieselotte | -2/+2 | |
| 2023-12-03 | Parse a pattern with no arm | Nadrieril | -2/+2 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+17 | |
