Implement `for<>` lifetime binder for closures This PR implements RFC 3216 ([TI](https://github.com/rust-lang/rust/issues/97362)) and allows code like the following: ```rust let _f = for<'a, 'b> |a: &'a A, b: &'b B| -> &'b C { b.c(a) }; // ^^^^^^^^^^^--- new! ``` cc ``@Aaron1011`` ``@cjgillot`` |
||
|---|---|---|
| .. | ||
| dump_visitor.rs | ||
| dumper.rs | ||
| lib.rs | ||
| sig.rs | ||
| span_utils.rs | ||