Files
swift-mirror/validation-test/compiler_crashers_2/3b24e8bed8732c5c.swift
Hamish Knight 7e22f9264b [test] Update some crasher signatures
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.
2025-07-20 18:32:38 +01:00

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() {
}
}