mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
e5a86d7358
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`` |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |