Skip to content

Conversation

@A4-Tacks
Copy link
Member

@A4-Tacks A4-Tacks commented Sep 5, 2025

Example

fn main() {
    Foo { bar$0: false };
}
struct Foo {}

->

fn main() {
    Foo { bar: false };
}
struct Foo {
    bar: bool,
}

Example
---
```rust
fn main() {
    Foo { bar$0: false };
}
struct Foo {}
```
->
```rust
fn main() {
    Foo { bar: false };
}
struct Foo {
    bar: bool,
}
```
@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Sep 5, 2025
@A4-Tacks A4-Tacks mentioned this pull request Nov 19, 2025
41 tasks
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