blob: 161622411e83fbede5662c79f4a88794fbe787de [file] [log] [blame]
import Foundation
class B {
func f() -> Bool {
let now = NSDate()
let later = NSDate.distantFuture as NSDate
return now.compare(later as Date) != .orderedDescending
}
}
print(B().f())