about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-57362-2.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-18/+0
2022-09-26address reviewb-naber-3/+3
2021-01-26Avoid describing a method as 'not found' when bounds are unsatisfiedAaron Hill-3/+3
Fixes #76267 When there is a single applicable method candidate, but its trait bounds are not satisfied, we avoid saying that the method is "not found". Insted, we update the error message to directly mention which bounds are not satisfied, rather than mentioning them in a note.
2020-06-22remove snapshot calls from "match" operations during selectNiko Matsakis-0/+2
Motivation: - we want to use leak-check sparingly, first off - these calls were essentially the same as doing the check during subtyping
2020-06-22Revert "modify leak-check to track only outgoing edges from placeholders"Niko Matsakis-28/+11
This reverts commit 2e01db4b396a1e161f7a73933fff34bc9421dba0.
2020-06-22modify leak-check to track only outgoing edges from placeholdersNiko Matsakis-11/+28
Also, update the affected tests. This seems strictly better but it is actually more permissive than I initially intended. In particular it accepts this ``` forall<'a, 'b> { exists<'intersection> { 'a: 'intersection, 'b: 'intersection, } } ``` and I'm not sure I want to accept that. It implies that we have a `'empty` in the new universe intoduced by the `forall`.
2020-02-28keep predicate order and tweak outputEsteban Küber-3/+5
2020-02-28Tweak wordingEsteban Küber-1/+1
2020-02-28Mention the full path of the implementing traitEsteban Küber-1/+1
2020-02-28On single local candidate, use span labelEsteban Küber-2/+3
2020-01-08Unify output of "variant not found" errorsEsteban Küber-1/+1
2019-03-23Tweak spans for E0599Esteban Küber-3/+1
2019-03-11Update testsVadim Petrochenkov-1/+1
2019-02-21update test files to reflect new outputNiko Matsakis-6/+10
One surprise: old-lub-glb-object.rs, may indicate a bug
2019-01-28Refer to synthetically named lifetimes as "some specific lifetime" rather ↵Rémy Rakic-1/+1
than "the specific lifetime"
2019-01-27identify when implemented for "some specific lifetime"Niko Matsakis-0/+11