| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-03-21 | remove `feature(inline_const_pat)` | lcnr | -4/+0 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -2/+3 | |
| ``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ``` | ||||
| 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 | -0/+15 | |
| 2024-01-28 | Handle methodcalls & operators in patterns | Lieselotte | -3/+3 | |
| 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-11-24 | Show number in error message even for one error | Nilstrieb | -1/+1 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+8 | |
