| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-12-16 | Take into account negative impls in "trait item not found" suggestions | LeSeulArtichaut | -0/+113 | |
| 2020-10-17 | Suggest minimal subset features in `incomplete_features` lint | Yuki Okushi | -0/+5 | |
| 2020-09-03 | specialization_graph: avoid trimmed paths for OverlapError | Dan Aloni | -4/+4 | |
| 2020-09-02 | pretty: trim paths of unique symbols | Dan Aloni | -18/+18 | |
| If a symbol name can only be imported from one place for a type, and as long as it was not glob-imported anywhere in the current crate, we can trim its printed path and print only the name. This has wide implications on error messages with types, for example, shortening `std::vec::Vec` to just `Vec`, as long as there is no other `Vec` importable anywhere. This adds a new '-Z trim-diagnostic-paths=false' option to control this feature. On the good path, with no diagnosis printed, we should try to avoid issuing this query, so we need to prevent trimmed_def_paths query on several cases. This change also relies on a previous commit that differentiates between `Debug` and `Display` on various rustc types, where the latter is trimmed and presented to the user and the former is not. | ||||
| 2020-06-16 | warn against 'specialization' feature | Ralf Jung | -9/+57 | |
| 2020-04-26 | Use Cell::take in a couple places | ThinkChaos | -2/+2 | |
| 2020-04-24 | Rollup merge of #71235 - estebank:lt-sugg-2, r=ecstatic-morse | Dylan DPC | -1/+1 | |
| Tweak `'static` suggestion code Fix #71196. | ||||
| 2020-04-23 | fix error code for E0751 | YI | -15/+15 | |
| 2020-04-22 | Sort `MultiSpan`s on creation | Esteban Küber | -1/+1 | |
| 2020-04-08 | Small tweaks to required bound span | Esteban Küber | -6/+6 | |
| 2020-04-08 | Use `PredicateObligation`s instead of `Predicate`s | Esteban Küber | -1/+1 | |
| Keep more information about trait binding failures. | ||||
| 2020-03-26 | add test for negative specializes negative | Niko Matsakis | -0/+13 | |
| 2020-03-26 | move stderr file too | Niko Matsakis | -0/+12 | |
| 2020-03-26 | give the negative-impls-builtin test a more sensible name | Niko Matsakis | -0/+0 | |
| 2020-03-26 | comment the `typeck-negative-impls-builtin` test | Niko Matsakis | -0/+3 | |
| 2020-03-26 | move feature-gate-negative-impls test to traits/negative-impls | Niko Matsakis | -0/+3 | |
| 2020-03-26 | introduce `negative_impls` feature gate and document | Niko Matsakis | -12/+12 | |
| They used to be covered by `optin_builtin_traits` but negative impls are now applicable to all traits, not just auto traits. This also adds docs in the unstable book for the current state of auto traits. | ||||
| 2020-03-26 | make a custom error for overlap with negative impls | Niko Matsakis | -47/+43 | |
| 2020-03-26 | permit negative impls for non-auto traits | Niko Matsakis | -0/+428 | |
