mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
20 lines
352 B
Swift
20 lines
352 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
protocol Hashish {
|
|
var hash: Int { get }
|
|
}
|
|
|
|
extension NSObject: Hashish {}
|
|
|
|
func getHash<T: Hashish>(x: T) -> Int { return x.hash }
|
|
|
|
let u = NSURL(string: "http://www.example.com")!
|
|
|
|
// CHECK: true
|
|
print(u.hash == getHash(u))
|