mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
369 B
Swift
8 lines
369 B
Swift
// {"kind":"typecheck","signature":"swift::RequirementSignatureRequest::evaluate(swift::Evaluator&, swift::ProtocolDecl*) const"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
protocol a : b where c == d<e> protocol f : g protocol g {
|
|
associatedtype 2 : a
|
|
}
|
|
struct d < e extension d
|
|
: f protocol h{associatedtype e associatedtype c : g} protocol b : h
|