mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
A parse-only option is needed for parse performance tracking and the current option also includes semantic analysis.
22 lines
339 B
Swift
22 lines
339 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
class C : Hashable {
|
|
var x = 0
|
|
|
|
var hashValue: Int {
|
|
return x
|
|
}
|
|
}
|
|
|
|
func == (x: C, y: C) -> Bool { return true }
|
|
|
|
|
|
class D : C {}
|
|
|
|
var setC = Set<C>()
|
|
var setD = Set<D>()
|
|
|
|
// Test set upcasts
|
|
setC = setD
|
|
setD = setC // expected-error{{cannot assign value of type 'Set<C>' to type 'Set<D>'}}
|