Files
swift-mirror/validation-test/compiler_crashers/SubstitutionMap-lookupConformance-32340f.swift
2025-10-20 10:14:32 +01:00

9 lines
302 B
Swift

// {"kind":"typecheck","original":"3d2e2125","signature":"swift::SubstitutionMap::lookupConformance(swift::CanType, swift::ProtocolDecl*) const"}
// RUN: not --crash %target-swift-frontend -typecheck %s
protocol a {
associatedtype b where c: d
}
extension a where b == <#type#> {
typealias c = b
}