Skip to content

Conversation

A4-Tacks
Copy link
Contributor

@A4-Tacks A4-Tacks commented Oct 9, 2025

Example

fn f() {
    let f: fn(i32) = |y$0| {};
}

Before this PR:

Assist not applicable

After this PR:

fn f() {
    let f: fn(i32) = |y: i32| {};
}

Example
---
```rust
fn f() {
    let f: fn(i32) = |y$0| {};
}
```

**Before this PR**:

Assist not applicable

**After this PR**:

```rust
fn f() {
    let f: fn(i32) = |y: i32| {};
}
```
@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 9, 2025
Copy link
Member

@ShoyuVanilla ShoyuVanilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@ShoyuVanilla ShoyuVanilla added this pull request to the merge queue Oct 10, 2025
Merged via the queue into rust-lang:master with commit 22b15a9 Oct 10, 2025
15 checks passed
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 10, 2025
@A4-Tacks A4-Tacks deleted the explicit-ty-param-in-let branch October 10, 2025 12:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants