mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
It's need to correctly maintain dependencies from an open-existential instruction to a `keypath` instruction which uses the opened type. Fixes a SILVerifier crash. rdar://105517521
19 lines
653 B
Swift
19 lines
653 B
Swift
// RUN: %target-swift-frontend -O -emit-sil %s | %FileCheck %s
|
|
|
|
public protocol P {}
|
|
|
|
// CHECK-LABEL: sil @$s14inline_keypath6testitySbAA1P_pXp_s14PartialKeyPathCyxGtSlRzlF
|
|
// CHECK: [[T:%[0-9]+]] = open_existential_metatype %0
|
|
// CHECK: = keypath {{.*}}@opened{{.*}} type-defs: [[T]]
|
|
// CHECK: } // end sil function '$s14inline_keypath6testitySbAA1P_pXp_s14PartialKeyPathCyxGtSlRzlF'
|
|
public func testit<C: Collection>(_ t: any P.Type, _ kp: PartialKeyPath<C>) -> Bool {
|
|
return tyFunc(t, kp)
|
|
}
|
|
|
|
@inline(__always)
|
|
func tyFunc<C: Collection, H: P>(_ h: H.Type, _ kp: PartialKeyPath<C>) -> Bool {
|
|
return kp == \Array<H>.count
|
|
}
|
|
|
|
|