Files
swift-mirror/test/Runtime/Inputs/synthesized_decl_uniqueness.swift
Doug Gregor 32f577abf2 [Runtime] Perform “deep” comparisons of witness tables when uniquing metadata.
Metadata uniquing might encounter witness tables that were distinctly
generated but come from identical descriptors. Handle this case in metadata
uniquing be looking into the protocol conformance descriptors themselves.
2018-11-20 22:07:55 -08:00

15 lines
268 B
Swift

import CoreLocation
import Foundation
public func getCLError() -> Any.Type {
return CLError.self
}
public func getCLErrorCode() -> Any.Type {
return CLError.Code.self
}
public func getNotificationNameSet() -> Any.Type {
return Set<NSNotification.Name>.self
}