Runtime: Add GenericRequirementKind::SameShape and stub out cases

This commit is contained in:
Slava Pestov
2023-02-28 01:41:12 -05:00
parent 480a917fa2
commit d5b75fe7d2
4 changed files with 14 additions and 1 deletions

View File

@@ -1387,6 +1387,10 @@ llvm::Optional<TypeLookupError> swift::_checkGenericRequirements(
// FIXME: Implement this check.
continue;
}
case GenericRequirementKind::SameShape: {
llvm_unreachable("Implement me");
}
}
// Unknown generic requirement kind.