about summary refs log tree commit diff
path: root/src/test/ui/async-fn-multiple-lifetimes.stderr
AgeCommit message (Collapse)AuthorLines
2019-05-24Move async/await tests to test/ui/async-awaitvarkor-20/+0
2019-04-01Refactor async fn return type loweringTaylor Cramer-23/+11
async fn now lowers directly to an existential type declaration rather than reusing the `impl Trait` return type lowering. As part of this, it lowers all argument-position elided lifetimes using the in-band-lifetimes machinery, creating fresh parameter names for each of them, using each lifetime parameter as a generic argument to the generated existential type. This doesn't currently successfully allow multiple argument-position elided lifetimes since `existential type` doesn't yet support multiple lifetimes where neither outlive the other. This requires a separate fix.
2018-12-25Remove licensesMark Rousskov-3/+3
2018-07-22Use MultiSpan in E0707 and E709Esteban Küber-3/+3
2018-06-23Fix error code numbersGuillaume Gomez-3/+3
2018-06-22Review nits and updatesTaylor Cramer-3/+3
Move future_from_generator out of raw Update await to use $crate Renumber errors
2018-06-21Async methodsTaylor Cramer-1/+1
2018-06-21async await desugaring and testsTaylor Cramer-0/+32