mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2026-04-14 21:20:10 +00:00
Example
---
```rust
fn main() { unsafe {1}.$0 }
```
**Before this PR**
```rust
fn main() { const unsafe {{1}} }
```
**After this PR**
```rust
fn main() { const { unsafe {1} } }
```