Files
swift-mirror/validation-test/compiler_crashers_2/e5dc6197d5ae06b.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
350 B
Swift

// {"kind":"typecheck","signature":"swift::Mangle::ASTMangler::appendRequirement(swift::Requirement const&, swift::GenericSignature, bool)"}
// RUN: not --crash %target-swift-frontend -typecheck %s
protocol a {
typealias b = Int
}
protocol c {
associatedtype b
}
extension a where b == Int
extension a where Self : c {
protocol Int : c {
d