mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
17 lines
297 B
Swift
17 lines
297 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
|
|
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
|
|
println(u.hash == getHash(u))
|