| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-10-02 | WIP fix tests | Niko Matsakis | -5/+5 | |
| 2019-08-20 | Remove async_await gates from tests. | Mazdak Farrokhzad | -2/+0 | |
| 2019-08-12 | revamp how we handle elision in async fn | Niko Matsakis | -15/+5 | |
| We now always make fresh lifetimne parameters for all elided lifetimes, whether they are in the inputs or outputs. But then we generate `'_` in the case of elided lifetimes from the outputs. Example: ```rust async fn foo<'a>(x: &'a u32) -> &u32 { .. } ``` becomes ```rust type Foo<'a, 'b> = impl Future<Output = &'b u32>; fn foo<'a>(x: &'a u32) -> Foo<'a, '_> ``` | ||||
| 2019-08-08 | lifetime elision: add non-conforming-to-fn tests. | Mazdak Farrokhzad | -0/+46 | |
