mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
5 lines
503 B
Swift
5 lines
503 B
Swift
// {"kind":"typecheck","signature":"swift::ASTContext::getSpecializedConformance(swift::Type, swift::NormalProtocolConformance*, swift::SubstitutionMap)","signatureAssert":"Assertion failed: (substitutions.getGenericSignature().getCanonicalSignature() == generic->getGenericSignature().getCanonicalSignature()), function getSpecializedConformance"}
|
|
// RUN: not %target-swift-frontend -typecheck %s
|
|
protocol a{ < } protocol b { associatedtype c : a where d == Self }
|
|
class e<f> : a where f : b, f.c == e
|