about summary refs log tree commit diff
path: root/src/test/ui/generator/yield-in-args.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-9/+0
2019-04-22update tests for migrate mode by defaultMatthew Jasper-2/+2
2019-03-11Update testsVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-1/+1
2018-03-14update testsGuillaume Gomez-1/+1
2018-02-26Update UI testsVadim Petrochenkov-1/+1
2018-02-25Update ui testsGuillaume Gomez-0/+1
2017-07-29Use a free error codeAlex Crichton-1/+1
2017-07-28update references due to removing tabsNiko Matsakis-1/+1
2017-07-28Remove tabsJohn Kåre Alsaker-2/+2
2017-07-28change how we report `err_out_of_scope` borrowck errorsNiko Matsakis-0/+8
Also, remove the explicit code detecting borrows over a yield. It turns out not to be necessary -- any such borrow winds up with a lifetime that is part of the generator type, and therefore which will outlive the generator expression itself, which yields an `err_out_of_scope`. So instead we intercept those errors and display them in a nicer way.