about summary refs log tree commit diff
path: root/tests/ui/suggestions/deref-path-method.stderr
AgeCommit message (Collapse)AuthorLines
2025-02-10Show diff suggestion format on verbose replacementEsteban 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-09-07Bless tests due to new method suggestions.Tim (Theemathas) Chirananthavat-1/+1
2024-05-23Do not suggest unresolvable builder methodsGurinder Singh-1/+1
2024-04-12Avoid more NonNull-raw-NonNull roundtrips in VecBen Kimock-1/+1
2024-03-01try_with_capacity for Vec, VecDeque, StringKornel-2/+2
#91913
2023-11-24Show number in error message even for one errorNilstrieb-1/+1
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-07When not finding assoc fn on type, look for builder fnEsteban Küber-0/+7
When we have a resolution error when looking at a fully qualified path on a type, look for all associated functions on inherent impls that return `Self` and mention them to the user. Fix #69512.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+14