| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-04-22 | Sort `MultiSpan`s on creation | Esteban Küber | -1/+1 | |
| 2020-04-18 | Add label to item source of bound obligation | Esteban Küber | -1/+1 | |
| 2020-04-18 | Do not emit note for projected derived obligations | Esteban Küber | -1/+0 | |
| 2020-04-18 | Remove `AssocTypeBound` and propagate bound `Span`s | Esteban Küber | -15/+11 | |
| 2020-04-18 | Maintain chain of derived obligations | Esteban Küber | -0/+5 | |
| When evaluating the derived obligations from super traits, maintain a reference to the original obligation in order to give more actionable context in the output. | ||||
| 2020-04-14 | Rename AssocKind::Method to AssocKind::Fn | Rustin-Liu | -2/+2 | |
| Rename fn_has_self_argument to fn_has_self_parameter Rename AssocItemKind::Method to AssocItemKind::Fn Refine has_no_input_arg Refine has_no_input_arg Revert has_no_input_arg Refine suggestion_descr Move as_def_kind into AssocKind Signed-off-by: Rustin-Liu <rustin.liu@gmail.com> Fix tidy check issue Signed-off-by: Rustin-Liu <rustin.liu@gmail.com> | ||||
| 2020-04-11 | rustc: Add a warning count upon completion | RoccoDev | -1/+1 | |
| 2020-04-08 | Small tweaks to required bound span | Esteban Küber | -25/+25 | |
| 2020-04-08 | Use `PredicateObligation`s instead of `Predicate`s | Esteban Küber | -17/+26 | |
| Keep more information about trait binding failures. | ||||
| 2020-04-05 | "cannot resolve" → "cannot satisfy" | Esteban Küber | -1/+1 | |
| 2020-04-03 | Rollup merge of #70741 - DutchGhost:test-59023, r=Centril | Mazdak Farrokhzad | -0/+17 | |
| Add test for #59023 Adds a test for https://github.com/rust-lang/rust/issues/59023 Closes https://github.com/rust-lang/rust/issues/59023 | ||||
| 2020-04-03 | Add test for #59023 | DutchGhost | -0/+17 | |
| 2020-04-02 | tests: remove ignore directives from tests that mention core/alloc/std spans. | Eduard-Mihai Burtescu | -18/+9 | |
| 2020-03-29 | Tweak `suggest_constraining_type_param` | Esteban Küber | -24/+18 | |
| Some of the bound restriction structured suggestions were incorrect while others had subpar output. | ||||
| 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 | -18/+47 | |
| 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 | -7/+253 | |
| 2020-03-23 | Rollup merge of #69942 - estebank:sized-verbose-sugg, r=matthewjasper | Mazdak Farrokhzad | -8/+8 | |
| Increase verbosity when suggesting subtle code changes Do not suggest changes that are actually quite small inline, to minimize the likelihood of confusion. Fix #69243. | ||||
| 2020-03-23 | Rollup merge of #70227 - LeSeulArtichaut:typo-def, r=Centril | Mazdak Farrokhzad | -6/+5 | |
| Only display definition when suggesting a typo Closes #70206 r? @Centril | ||||
| 2020-03-22 | Use more targetted span for error label | Esteban Küber | -4/+4 | |
| 2020-03-22 | Normalize wording of privacy access labels | Esteban Küber | -6/+6 | |
| 2020-03-21 | Add explanation message for E0224 | Nixon Enraght-Moony | -2/+6 | |
| 2020-03-21 | Bless tests | LeSeulArtichaut | -6/+5 | |
| 2020-03-12 | update tests | Mark Mansi | -5/+5 | |
| 2020-03-10 | review comments | Esteban Küber | -6/+1 | |
| 2020-03-06 | Suggest removal of auto trait super traits and type params | Esteban Küber | -0/+5 | |
| 2020-03-06 | Further tweak spans in ast validation errors | Esteban Küber | -2/+4 | |
| 2020-03-05 | review comments | Esteban Küber | -2/+2 | |
| 2020-03-04 | Tweak output for invalid negative impl AST errors | Esteban Küber | -7/+3 | |
| 2020-02-28 | keep predicate order and tweak output | Esteban Küber | -9/+15 | |
| 2020-02-28 | Tweak wording | Esteban Küber | -3/+3 | |
| 2020-02-28 | Mention the full path of the implementing trait | Esteban Küber | -3/+3 | |
| 2020-02-28 | On single local candidate, use span label | Esteban Küber | -6/+9 | |
| 2020-02-22 | Add note regarding argument ordering | varkor | -0/+2 | |
| 2020-02-22 | Move generic arg / param validation to `create_substs_for_generic_args` | varkor | -8/+9 | |
| 2020-02-17 | Do not emit note suggesting to implement trait to foreign type | LeSeulArtichaut | -2/+0 | |
| Update tests Extend to other operations Refractor check in a separate function Fix more tests | ||||
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -1/+5 | |
| Same idea for `Unsafety` & use new span for better diagnostics. | ||||
| 2020-02-09 | Improve reporting errors and suggestions for trait bounds | Patryk Wychowaniec | -14/+38 | |
| 2020-02-04 | Auto merge of #68544 - Aaron1011:remove-overlapping-traits, r=estebank | bors | -30/+13 | |
| Remove the `overlapping_marker_traits` feature See #29864 This has been replaced by `#[feature(marker_trait_attr)]` A few notes: * Due to PR #68057 not yet being in the bootstrap compiler, it's necessary to continue using `#![feature(overlapping_marker_traits)]` under `#[cfg(bootstrap)]` to work around type inference issues. * I've updated tests that used `overlapping_marker_traits` to now use `marker_trait_attr` where applicable The test `src/test/ui/overlap-marker-trait.rs` doesn't make any sense now that `overlapping_marker_traits`, so I removed it. The test `src/test/ui/traits/overlap-permitted-for-marker-traits-neg.rs` now fails, since it's no longer possible to have multiple overlapping negative impls of `Send`. I believe that this is the behavior we want (assuming that `Send` is not going to become a `#[marker]` trait, so I renamed the test to `overlap-permitted-for-marker-traits-neg` | ||||
| 2020-02-04 | Remove the `overlapping_marker_traits` feature | Aaron Hill | -30/+13 | |
| See #29864 This has been replaced by `#[feature(marker_trait_attr)]` A few notes: * Due to PR #68057 not yet being in the bootstrap compiler, it's necessary to continue using `#![feature(overlapping_marker_traits)]` under `#[cfg(bootstrap)]` to work around type inference issues. * I've updated tests that used `overlapping_marker_traits` to now use `marker_trait_attr` where applicable The test `src/test/ui/overlap-marker-trait.rs` doesn't make any sense now that `overlapping_marker_traits`, so I removed it. The test `src/test/ui/traits/overlap-permitted-for-marker-traits-neg.rs` now fails, since it's no longer possible to have multiple overlapping negative impls of `Send`. I believe that this is the behavior we want (assuming that `Send` is not going to become a `#[marker]` trait, so I renamed the test to `overlap-permitted-for-marker-traits-neg` | ||||
| 2020-02-03 | Change wording for object unsafe because of assoc const | Esteban Küber | -3/+3 | |
| 2020-02-02 | Deal with spans showing `std` lib | Esteban Küber | -2/+7 | |
| Address #53081 | ||||
| 2020-02-02 | Point at reason in object unsafe trait with `Self` in supertraits or ↵ | Esteban Küber | -1/+4 | |
| `where`-clause | ||||
| 2020-02-02 | Account for `?Sized` type parameter bounds | Esteban Küber | -2/+2 | |
| 2020-02-02 | Use more appropriate spans on object unsafe traits and provide structured ↵ | Esteban Küber | -8/+14 | |
| suggestions when possible | ||||
