mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
323 B
Swift
14 lines
323 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
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 ""
|