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 f32572b commit f9f50a6Copy full SHA for f9f50a6
lib/Sema/TypeCheckProtocol.cpp
@@ -6108,6 +6108,8 @@ void TypeChecker::checkConformancesInContext(IterableDeclContext *idc) {
6108
sendableConformanceIsUnchecked = true;
6109
else if (isImpliedByConformancePredatingConcurrency(normal))
6110
sendableConformancePredatesConcurrency = true;
6111
+ else if (isa<InheritedProtocolConformance>(conformance))
6112
+ sendableConformanceIsUnchecked = true;
6113
}
6114
} else if (proto->isSpecificProtocol(KnownProtocolKind::DistributedActor)) {
6115
if (auto classDecl = dyn_cast<ClassDecl>(nominal)) {
0 commit comments