| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Merged migrated compile-fail tests and ui tests. Fixes #46841. | David Wood | -1974/+0 | |
| 2018-08-09 | Updated tests after rebase. | David Wood | -29/+29 | |
| 2018-08-07 | Auto merge of #52450 - PramodBisht:issue/52413, r=estebank | bors | -22/+21 | |
| Closes #52413: Provide structured suggestion instead of label Provide structured suggestion instead of label r? @estebank | ||||
| 2018-08-06 | Disable some nice region errors in NLL mode. | David Wood | -127/+141 | |
| 2018-08-06 | #52413: addressed @estebank's Nit | Pramod Bisht | -19/+19 | |
| 2018-08-05 | Closes #52413: Provide structured suggestion instead of label | Pramod Bisht | -22/+21 | |
| 2018-07-26 | Use better spans for dummy accesses used in matches | Matthew Jasper | -11/+5 | |
| 2018-07-25 | improve heuristics for what makes an interesting constraint | Niko Matsakis | -8/+8 | |
| 2018-07-25 | remove unnecessary `blame_span` from `report_region_errors` | Niko Matsakis | -31/+34 | |
| 2018-07-20 | Update tests for new NLL mutability errors | Matthew Jasper | -2/+2 | |
| 2018-06-19 | Update the existing UI tests to reflect diagnostic changes in NLL. | Felix S. Klock II | -1/+13 | |
| 2018-06-19 | NLL: Updates to diagnostic output in `test/ui`. | Felix S. Klock II | -0/+4 | |
| 2018-05-25 | rust-lang/rust#51025: improve test robustness so that they work under NLL too. | Felix S. Klock II | -17/+17 | |
| 2018-04-18 | Trivial updates to `.nll.stderr` files post-rebase, reflecting s/-Znll/nll/ ↵ | Felix S. Klock II | -37/+37 | |
| in messages. | ||||
| 2018-04-11 | Checkpoint the current status of NLL on `ui` tests via compare-mode=nll. | Felix S. Klock II | -0/+682 | |
| 2018-03-14 | update tests | Guillaume Gomez | -38/+38 | |
| 2018-03-09 | tidy: Add a check for stray `.stderr` and `.stdout` files in UI test directories | Vadim Petrochenkov | -19/+0 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -5/+5 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -89/+89 | |
| 2018-02-25 | Update ui tests | Guillaume Gomez | -0/+39 | |
| 2018-02-17 | fix more typos found by codespell. | Matthias Krüger | -1/+1 | |
| 2017-11-27 | Don't show first assignment in loops | Matthew Jasper | -0/+118 | |
| Matches current ast-borrowck behavior. | ||||
| 2017-11-24 | Merge cfail and ui tests into ui tests | Oliver Schneider | -77/+78 | |
| 2017-11-12 | Improve SubSupConflict case with one named, one anonymous lifetime parameter ↵ | Cengiz Can | -91/+48 | |
| #42701 | ||||
| 2017-11-06 | review comments | Esteban Küber | -2/+2 | |
| 2017-11-05 | Handle anon lifetime arg being returned with named lifetime return type | Esteban Küber | -3/+44 | |
| When there's a lifetime mismatch between an argument with an anonymous lifetime being returned in a method with a return type that has a named lifetime, show specialized lifetime error pointing at argument with a hint to give it an explicit lifetime matching the return type. ``` error[E0621]: explicit lifetime required in the type of `other` --> file2.rs:21:21 | 17 | fn bar(&self, other: Foo) -> Foo<'a> { | ----- consider changing the type of `other` to `Foo<'a>` ... 21 | other | ^^^^^ lifetime `'a` required ``` Follow up to #44124 and #42669. | ||||
| 2017-09-26 | fix test reference | Niko Matsakis | -1/+1 | |
| 2017-09-26 | remove random newlines from error messages, fix compile-fail test | Niko Matsakis | -10/+5 | |
| That kind of formatting seems like the job of other code. | ||||
| 2017-09-26 | use present tense consistently and update references | Niko Matsakis | -4/+4 | |
| 2017-09-26 | modify message for return time having multiple lifetimes | gaurikholkar | -32/+25 | |
| 2017-09-26 | merge fixes, addressing CR comments | gaurikholkar | -76/+24 | |
| 2017-09-14 | add ui tests for EBR | gaurikholkar | -0/+32 | |
| 2017-09-14 | adding ui tests | gaurikholkar | -0/+28 | |
| 2017-09-13 | fix ui tests | gaurikholkar | -2/+2 | |
| 2017-09-12 | Adding changes for trait objects | gaurikholkar | -0/+24 | |
| 2017-09-12 | add ui test for fn items, tidy fixes | gaurikholkar | -4/+24 | |
| 2017-09-12 | Adding E0623 for structs | gaurikholkar | -0/+80 | |
| 2017-09-09 | adding E0623 for LateBound regions | gaurikholkar | -0/+57 | |
| 2017-08-23 | minor fix | gaurikholkar | -1/+1 | |
| 2017-08-23 | code review fixes | gaurikholkar | -66/+6 | |
| 2017-08-17 | Adding E0623 for structs | gaurikholkar | -53/+366 | |
| 2017-07-29 | changing E0623 error message | gaurikholkar | -10/+10 | |
| 2017-07-28 | Adding E0623, to detect missing lifetimes when both regions are anonymous | gaurikholkar | -0/+108 | |
| 2017-07-02 | report the total number of errors on compilation failure | Ariel Ben-Yehuda | -8/+8 | |
| Prior to this PR, when we aborted because a "critical pass" failed, we displayed the number of errors from that critical pass. While that's the number of errors that caused compilation to abort in *that place*, that's not what people really want to know. Instead, always report the total number of errors, and don't bother to track the number of errors from the last pass that failed. This changes the compiler driver API to handle errors more smoothly, and therefore is a compiler-api-[breaking-change]. Fixes #42793. | ||||
| 2017-07-02 | Revert "Change error count messages" | Ariel Ben-Yehuda | -7/+7 | |
| This reverts commit 5558c64f33446225739c1153b43d2e309bb4f50e. | ||||
| 2017-06-29 | adding compile-fail test | gaurikholkar | -53/+0 | |
| 2017-06-29 | Changing the error code to E0621 | gaurikholkar | -7/+7 | |
| 2017-06-29 | Adding changes to track anonymous region in self | gaurikholkar | -3/+53 | |
| 2017-06-29 | track anonymous regions in return types, fix tidy errors | gaurikholkar | -1/+52 | |
| 2017-06-29 | Enabling E0611 for inherent functions | gaurikholkar | -0/+63 | |
