Files
swift-mirror/validation-test/compiler_crashers_2/e5dc6197d5ae06b.swift
2025-08-15 17:09:58 +01:00

13 lines
402 B
Swift

// {"kind":"typecheck","signature":"swift::Mangle::ASTMangler::appendExistentialLayout(swift::ExistentialLayout const&, swift::GenericSignature, swift::ValueDecl const*)","stackOverflow":true}
// 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