```swift import Foundation let url = URL(string: "file:///c%3A/Users/alex")! print(url.path) ``` Outputs `/c:/Users/alex`. As far as I can tell, the output should be `c:/Users/alex` (this is also what swift-corelibs-foundation produced).