about summary refs log tree commit diff
path: root/tests/ui/rfcs/rfc-0107-bind-by-move-pattern-guards
AgeCommit message (Collapse)AuthorLines
2024-04-11Suggest `.clone()` in some move errorsEsteban Küber-0/+16
``` 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)-3/+3
2023-06-05Better group RFC ui tests togetherMaybe Waffle-0/+161