mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This migrates anything using the following pattern:
```swift
if let optX = try? someOptional(),
let x = optX,
...
```
to this:
```swift
if let x = try? someOptional(),
...
```
2.0 KiB
2.0 KiB