| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-04-10 | compiletest: Trim the value of `dont-require-annotations` | Vadim Petrochenkov | -1/+1 | |
| 2025-04-10 | compiletest: Make `SUGGESTION` annotations viral | Vadim Petrochenkov | -0/+2 | |
| 2025-01-28 | Tweak `&mut self` suggestion span | Esteban Küber | -1/+1 | |
| ``` error[E0596]: cannot borrow `*self.s` as mutable, as it is behind a `&` reference --> $DIR/issue-38147-1.rs:17:9 | LL | self.s.push('x'); | ^^^^^^ `self` is a `&` reference, so the data it refers to cannot be borrowed as mutable | help: consider changing this to be a mutable reference | LL | fn f(&mut self) { | +++ ``` Note the suggestion to add `mut` instead of replacing the entire `&self` with `&mut self`. | ||||
| 2023-05-05 | tweak spans for `ref mut` suggestion | Ezra Shaw | -3/+0 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+30 | |
