about summary refs log tree commit diff
path: root/src/test/ui/nll/get_default.stderr
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-6/+6
2018-10-21Use new region infer errors for explaining borrowsMatthew Jasper-36/+18
This gives at least some explanation for why a borrow is expected to last for a certain free region. Also: * Reports E0373: "closure may outlive the current function" with NLL. * Special cases the case of returning a reference to (or value referencing) a local variable or temporary (E0515). * Special case assigning a reference to a local variable in a closure to a captured variable.
2018-10-03Clearer later use messages for callsMatthew Jasper-3/+3
Give a special message when the later use is from a call. Use the span of the callee instead of the whole expression. For conflicting borrow messages say that the later use is of the first borrow.
2018-08-07avoid computing liveness when a variable doesn't need itNiko Matsakis-3/+12
In particular, we skip computing liveness for a variable X if all the regions in its type are known to outlive free regions.
2018-08-06revert #52991Niko Matsakis-12/+3
2018-08-03update error messages -- in some cases maybe we should investigateNiko Matsakis-3/+12
2018-07-05update testcsmoe-12/+12
2018-05-09ignore the point where the outlives requirement was addedNiko Matsakis-6/+48
2018-03-14update testsGuillaume Gomez-1/+1
2018-02-26Update UI testsVadim Petrochenkov-2/+2
2018-02-26Update UI testsVadim Petrochenkov-12/+12
2018-02-25Update ui testsGuillaume Gomez-0/+1
2017-12-20Add three point error handling to borrowckSantiago Pastorino-0/+3
Closes #45988
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-14/+14
2017-11-19mir-borrowck: Remove parens in the lvalue description of a derefBasile Desloges-1/+1
2017-11-16integrate NLL with MIR type-checkerNiko Matsakis-0/+47