mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The signatures have changed here either due to code changes in the repo or due to improvements to the signature detection, update the test cases.
13 lines
468 B
Swift
13 lines
468 B
Swift
// {"kind":"emit-ir","signature":"swift::irgen::FulfillmentMap::searchTypeMetadata(swift::irgen::IRGenModule&, swift::CanType, swift::irgen::IsExact_t, swift::MetadataState, unsigned int, swift::irgen::MetadataPath&&, swift::irgen::FulfillmentMap::InterestingKeysCallback const&)"}
|
|
// RUN: not --crash %target-swift-frontend -emit-ir %s
|
|
class a<b> {
|
|
}
|
|
protocol c {
|
|
associatedtype f: a<d>
|
|
associatedtype d
|
|
}
|
|
extension c where Self == f, f == d {
|
|
func e() {
|
|
}
|
|
}
|