Skip to content

Conversation

A4-Tacks
Copy link
Contributor

Move for-binder to where predicate.

Example

fn foo<F>()
where
    F: $0for<'a> Fn(&'a str)
{}

->

fn foo<F>()
where
    for<'a> F: Fn(&'a str)
{}

Move for-binder to where predicate.

Example
---
```rust
fn foo<F>()
where
    F: $0for<'a> Fn(&'a str)
{}
```
->
```rust
fn foo<F>()
where
    for<'a> F: Fn(&'a str)
{}
```
@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants