mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
371 B
Swift
16 lines
371 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
// https://github.com/apple/swift/issues/51320
|
|
|
|
public protocol LocalizedError : Error {
|
|
var errorDescription: String? { get }
|
|
}
|
|
|
|
public enum AFError: Error {}
|
|
extension AFError {
|
|
public var isInvalidURLError: Bool {
|
|
|
|
extension AFError: LocalizedError {
|
|
public var errorDescription: String? {
|
|
return ""
|