| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-12-08 | Rollup merge of #118730 - jyn514:cmp_refs, r=estebank,compiler-errors | Matthias Krüger | -2/+2 | |
| recurse into refs when comparing tys for diagnostics before:  after:  this diff from the test suite is also quite nice imo: ```diff `@@` -4,8 +4,8 `@@` error[E0308]: mismatched types LL | debug_assert_eq!(iter.next(), Some(value)); | ^^^^^^^^^^^ expected `Option<<I as Iterator>::Item>`, found `Option<&<I as Iterator>::Item>` | - = note: expected enum `Option<<I as Iterator>::Item>` - found enum `Option<&<I as Iterator>::Item>` + = note: expected enum `Option<_>` + found enum `Option<&_>` ``` | ||||
| 2023-12-07 | recurse into refs when comparing tys for diagnostics | jyn | -2/+2 | |
| 2023-12-07 | Resolve assoc item bindings by namespace | León Orell Valerian Liehr | -47/+134 | |
| If a const is expected, resolve a const. If a type is expected, resolve a type. Don't try to resolve a type first falling back to consts. | ||||
| 2023-11-30 | generic_const_exprs: suggest to add the feature, not use it | Ralf Jung | -1/+1 | |
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -22/+22 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-10-25 | Work around the fact that `check_mod_type_wf` may spuriously return ↵ | Oli Scherer | -3/+10 | |
| `ErrorGuaranteed`, even if that error is only emitted by `check_modwitem_types` | ||||
| 2023-10-20 | Avoid a `track_errors` by bubbling up most errors from `check_well_formed` | Oli Scherer | -92/+26 | |
| 2023-10-17 | Unify suggestion wording | Esteban Küber | -5/+3 | |
| 2023-10-05 | Rollup merge of #116428 - Alexendoo:note-duplicate-diagnostics, ↵ | Matthias Krüger | -0/+1 | |
| r=compiler-errors,estebank Add a note to duplicate diagnostics Helps explain why there may be a difference between manual testing and the test suite output and highlights them as something to potentially look into For existing duplicate diagnostics I just blessed them other than a few files that had other `NOTE` annotations in | ||||
| 2023-10-05 | Add a note to duplicate diagnostics | Alex Macleod | -0/+1 | |
| 2023-10-04 | Tweak wording of E0562 | Esteban Küber | -1/+1 | |
| Fix #80476. | ||||
| 2023-09-14 | don't point at const usage site for resolution-time errors | Ralf Jung | -3/+3 | |
| also share the code that emits the actual error | ||||
| 2023-09-14 | move required_consts check to general post-mono-check function | Ralf Jung | -6/+46 | |
| 2023-09-10 | Point out if a local trait has no implementations | Michael Goulet | -0/+16 | |
| 2023-09-01 | Fall through when resolving elided assoc const lifetimes | Michael Goulet | -0/+59 | |
| 2023-08-25 | Handle Self in paths too | Michael Goulet | -2/+2 | |
| 2023-08-20 | Warn on elided lifetimes in associated constants | Michael Goulet | -1/+17 | |
| 2023-07-18 | moved note as unspanned note, moved note to the bottom of the msg | nxya | -20/+4 | |
| 2023-07-18 | added links as a note | nxya | -4/+4 | |
| 2023-07-18 | add links to query documentation for E0391 | nxya | -4/+4 | |
| 2023-07-18 | added links as a note | nxya | -4/+24 | |
| 2023-07-18 | add links to query documentation for E0391 | nxya | -4/+4 | |
| 2023-07-15 | Check entry type as part of item type checking. | Camille GILLOT | -6/+6 | |
| 2023-06-25 | Add a regression test for #110933 | Yuki Okushi | -0/+20 | |
| Signed-off-by: Yuki Okushi <jtitor@2k36.org> | ||||
| 2023-06-11 | properly check associated consts for infer placeholders | Michael Goulet | -0/+19 | |
| 2023-04-23 | Don't create projection ty for const projection | Michael Goulet | -0/+33 | |
| 2023-04-15 | Only enable ConstProp at mir-opt-level >= 2. | Camille GILLOT | -8/+0 | |
| 2023-04-14 | bless the single test | Ezra Shaw | -0/+2 | |
| 2023-03-21 | evaluate: improve and fix recursion depth handling | lcnr | -1/+1 | |
| 2023-02-22 | pluralize stuff | Michael Goulet | -1/+1 | |
| 2023-02-14 | Better label for illegal impl trait types | Michael Goulet | -1/+1 | |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -1/+1 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+1958 | |
