rust-analyzer/crates/ide-completion
A4-Tacks 408b8bcc4a
Fix complete type in nested pattern
Example
---
```rust
struct Foo { num: u32 }
struct Bar(Foo);
fn foo(Bar($0)) {}
```

**Before this PR**:

```rust
struct Foo { num: u32 }
struct Bar(Foo);
fn foo(Bar(Foo { num$1 }: Foo$0)) {}
```

**After this PR**:

```rust
struct Foo { num: u32 }
struct Bar(Foo);
fn foo(Bar(Foo { num$1 }$0)) {}
```
2025-09-17 15:11:22 +08:00
..
src Fix complete type in nested pattern 2025-09-17 15:11:22 +08:00
Cargo.toml Don't run doctests 2025-06-23 00:50:22 +03:00