| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-12-11 | Don't emit "field expressions may not have generic arguments" if it's a ↵ | Orion Gonzalez | -6/+6 | |
| method call without () | ||||
| 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/+3 | |
| ``` 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 | Recover more expressions in patterns | Lieselotte | -4/+16 | |
| 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 | |
