We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d77c6f4 commit 3251411Copy full SHA for 3251411
lib/Serialization/Serialization.cpp
@@ -1727,7 +1727,10 @@ void Serializer::writeRequirementSignature(
1727
1728
for (const auto &typeAlias : requirementSig.getTypeAliases()) {
1729
rawData.push_back(addDeclBaseNameRef(typeAlias.getName()));
1730
- rawData.push_back(addTypeRef(typeAlias.getUnderlyingType()));
+
1731
+ auto underlyingType = typeAlias.getUnderlyingType();
1732
+ ASSERT(!underlyingType->findUnresolvedDependentMemberType());
1733
+ rawData.push_back(addTypeRef(underlyingType));
1734
}
1735
1736
RequirementSignatureLayout::emitRecord(
0 commit comments