Files
swift-mirror/validation-test/compiler_crashers/RewriteContext-getRequirementMachine-5d36d2.swift
2025-12-08 11:01:59 +00:00

10 lines
320 B
Swift

// {"kind":"typecheck","original":"0004c325","signature":"swift::rewriting::RewriteContext::getRequirementMachine(swift::ProtocolDecl const*)"}
// RUN: not --crash %target-swift-frontend -typecheck %s
protocol a {
associatedtype b: a
associatedtype c: a
where
d == Self,
c.c.b.c.c.b == Self, b.e == Self
}