about summary refs log tree commit diff
path: root/tests/ui/suggestions/missing-bound-in-derive-copy-impl-3.stderr
AgeCommit message (Collapse)AuthorLines
2025-06-22Implement DesugaringKind::FormatLiteralmejrs-3/+3
2025-03-14Do not suggest using `-Zmacro-backtrace` for builtin macrosEsteban Küber-3/+0
For macros that are implemented on the compiler, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros.
2024-12-07Mention type parameter in more cases and don't suggest ~const bound already ↵Esteban Küber-4/+4
there
2024-12-07Use trait name instead of full constraint in suggestion messageEsteban Küber-3/+3
``` help: consider restricting type parameter `T` with traits `Copy` and `Trait` | LL | fn duplicate_custom<T: Copy + Trait>(t: S<T>) -> (S<T>, S<T>) { | ++++++++++++++ ``` ``` help: consider restricting type parameter `V` with trait `Copy` | LL | fn index<'a, K, V: std::marker::Copy>(map: &'a HashMap<K, V>, k: K) -> &'a V { | +++++++++++++++++++ ```
2024-12-07reword trait bound suggestion message to include the boundsEsteban Küber-4/+4
2024-02-14Continue compilation after check_mod_type_wf errorsOli Scherer-1/+31
2024-02-05Stop bailing out from compilation just because there were incoherent traitsOli Scherer-2/+19
2023-11-24Show number in error message even for one errorNilstrieb-1/+1
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-03-08Dedup copy field errors for identical typesMichael Goulet-4/+0
2023-03-08may not => cannotMichael Goulet-1/+1
2023-01-11Move /src/test to /testsAlbert Larsan-0/+27