Files
swift-mirror/test/Interpreter/SDK/Inputs/multi-file-imported-enum/main.swift

12 lines
197 B
Swift

import Foundation
class B {
func f() -> Bool {
let now = NSDate()
let later = NSDate.distantFuture() as! NSDate
return now.compare(later) != .orderedDescending
}
}
print(B().f())