about summary refs log tree commit diff
path: root/tests/ui/suggestions
AgeCommit message (Expand)AuthorLines
2024-12-11Don't emit "field expressions may not have generic arguments" if it's a metho...Orion Gonzalez-8/+1
2024-12-11Arbitrary self types v2: use Receiver traitAdrian Taylor-2/+2
2024-12-07Tweak wordingEsteban Küber-2/+2
2024-12-07Do not talk about "trait `<Foo = Bar>`"Esteban Küber-2/+2
2024-12-07Account for `impl Trait` in "add bound" suggestion messageEsteban Küber-4/+4
2024-12-07Mention type parameter in more cases and don't suggest ~const bound already t...Esteban Küber-21/+21
2024-12-07Use trait name instead of full constraint in suggestion messageEsteban Küber-37/+37
2024-12-07reword trait bound suggestion message to include the boundsEsteban Küber-46/+46
2024-12-04Do not emit empty suggestionEsteban Küber-0/+76
2024-11-30Do not create trait object type if missing associated typesMichael Goulet-20/+3
2024-11-27Update tests to use new proc-macro headerEric Huss-14/+3
2024-11-26Rollup merge of #133394 - compiler-errors:dyn-more-errors, r=lcnrMichael Goulet-17/+3
2024-11-25`add_move_error_suggestions`: use a HIR visitor rather than `SourceMap`dianne-47/+59
2024-11-23Dont create trait object if it has errors in itMichael Goulet-17/+3
2024-11-23Update tests for new TRPL chapter orderChris Krycho-1/+1
2024-11-21E0277: suggest dereferencing function arguments in more casesdianne-0/+4
2024-11-21Rollup merge of #132489 - compiler-errors:fn-sugg-tweaks, r=BoxyUwUMatthias Krüger-0/+4
2024-11-17Make suggestion verboseEsteban Küber-4/+5
2024-11-17Point at `const` definition when used instead of a binding in a `let` statementEsteban Küber-2/+4
2024-11-11Provide placeholder generic arguments for traits in "no method found for type...dianne-0/+93
2024-11-08use verbose for path separator suggestionMichael Goulet-1/+6
2024-11-06Auto merge of #132404 - makai410:suggest-swap-lhs-rhs, r=fee1-deadbors-0/+28
2024-11-05Rollup merge of #132498 - uellenberg:typo-and-let-suggestions, r=estebankMatthias Krüger-0/+36
2024-11-05suggest swapping the equalitymakai410-0/+28
2024-11-02Suggest fixing typos and let bindings at the same timeuellenberg-0/+36
2024-11-02Use extract_callable_info, generalize it to async closureMichael Goulet-0/+4
2024-11-02On long E0277 primary span label, move it to a `help`Esteban Küber-13/+15
2024-11-02Trim output of E0277 in some casesEsteban Küber-1/+0
2024-11-02Add trait diff highlighting logic and use it in E0277Esteban Küber-2/+4
2024-10-29Remove detail from label/note that is already available in other noteEsteban Küber-27/+27
2024-10-19Rollup merge of #131925 - clubby789:redundant-revision-cfg, r=jieyouxuMatthias Krüger-3/+3
2024-10-19Rollup merge of #131795 - compiler-errors:expectation, r=NadrierilMatthias Krüger-4/+4
2024-10-19Rollup merge of #127675 - chenyukang:yukang-fix-127562-addr, r=petrochenkovMatthias Krüger-0/+16
2024-10-19Warn on redundant `--cfg` directive when revisions are usedclubby789-3/+3
2024-10-16Stop inverting expectation in normalization errorsMichael Goulet-4/+4
2024-10-11Don't assume traits used as type are trait objsVulnBandit-129/+74
2024-10-10UI tests: Rename "object safe" to "dyn compatible"León Orell Valerian Liehr-41/+41
2024-10-10Rename feature object_safe_for_dispatch to dyn_compatible_for_dispatchLeón Orell Valerian Liehr-1/+1
2024-09-27Rollup merge of #130826 - fmease:compiler-mv-obj-safe-dyn-compat, r=compiler-...Matthias Krüger-34/+34
2024-09-26Rollup merge of #130912 - estebank:point-at-arg-type, r=compiler-errorsJubilee-10/+10
2024-09-27On implicit `Sized` bound on fn argument, point at type instead of patternEsteban Küber-10/+10
2024-09-25Compiler: Rename "object safe" to "dyn compatible"León Orell Valerian Liehr-34/+34
2024-09-24be even more precise about "cast" vs "coercion"Lukas Markeffsky-1/+1
2024-09-24replace "cast" with "coercion" where applicableLukas Markeffsky-1/+1
2024-09-23Rollup merge of #130712 - compiler-errors:const-eval-error-reporting, r=BoxyUwUMatthias Krüger-3/+3
2024-09-23Rollup merge of #129550 - kornelski:boxasstr, r=joshtriplett,dtolnayMatthias Krüger-48/+0
2024-09-22Don't call const normalize in error reportingMichael Goulet-3/+3
2024-09-20Implement RTN in resolve_bound_vars and HIR ty loweringMichael Goulet-9/+3
2024-09-20Conditionally allow lowering RTN (..) in pathsMichael Goulet-10/+9
2024-09-19Add str.as_str() for easy dereferencing of Box<str>Kornel-48/+0