about summary refs log tree commit diff
path: root/tests/ui/suggestions/option-content-move.fixed
AgeCommit message (Collapse)AuthorLines
2024-08-03Revert "Rollup merge of #125572 - mu001999-contrib:dead/enhance, r=pnkfelix"Michael Goulet-2/+0
This reverts commit 13314df21b0bb0cdd02c6760581d1b9f1052fa7e, reversing changes made to 6e534c73c35f569492ed5fb5f349075d58ed8b7e.
2024-06-05Detect pub structs never constructed and unused associated constants in traitsr0cky-0/+2
2024-04-11Suggest `.clone()` in some move errorsEsteban Küber-2/+2
``` error[E0507]: cannot move out of `*x` which is behind a shared reference --> $DIR/borrowck-fn-in-const-a.rs:6:16 | LL | return *x | ^^ move occurs because `*x` has type `String`, which does not implement the `Copy` trait | help: consider cloning the value if the performance cost is acceptable | LL - return *x LL + return x.clone() | ```
2024-02-16[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives许杰友 Jieyou Xu (Joe)-1/+1
2023-12-04Mark more tests as `run-rustfix`Esteban Küber-0/+38