// subscripts are in hand.
MaybeExpr ExpressionAnalyzer::CompleteSubscripts(ArrayRef &&ref) {
const Symbol &symbol{ref.GetLastSymbol().GetUltimate()};
- const auto *object{symbol.detailsIf<semantics::ObjectEntityDetails>()};
int symbolRank{symbol.Rank()};
int subscripts{static_cast<int>(ref.size())};
if (subscripts == 0) {
- // nothing to check
+ return std::nullopt; // error recovery
} else if (subscripts != symbolRank) {
if (symbolRank != 0) {
Say("Reference to rank-%d object '%s' has %d subscripts"_err_en_US,
return std::nullopt;
}
}
- } else if (object) {
+ } else if (const auto *object{
+ symbol.detailsIf<semantics::ObjectEntityDetails>()}) {
// C928 & C1002
if (Triplet * last{std::get_if<Triplet>(&ref.subscript().back().u)}) {
if (!last->upper() && object->IsAssumedSize()) {
return std::nullopt;
}
}
+ } else {
+ // Shouldn't get here from Analyze(ArrayElement) without a valid base,
+ // which, if not an object, must be a construct entity from
+ // SELECT TYPE/RANK or ASSOCIATE.
+ CHECK(symbol.has<semantics::AssocEntityDetails>());
}
return Designate(DataRef{std::move(ref)});
}
// Applies subscripts to a data reference.
MaybeExpr ExpressionAnalyzer::ApplySubscripts(
DataRef &&dataRef, std::vector<Subscript> &&subscripts) {
+ if (subscripts.empty()) {
+ return std::nullopt; // error recovery
+ }
return std::visit(
common::visitors{
[&](SymbolRef &&symbol) {
if (baseExpr) {
if (ae.subscripts.empty()) {
// will be converted to function call later or error reported
- return std::nullopt;
} else if (baseExpr->Rank() == 0) {
if (const Symbol * symbol{GetLastSymbol(*baseExpr)}) {
if (!context_.HasError(symbol)) {
--- /dev/null
+! RUN: %S/test_errors.sh %s %t %f18
+! Regression test for subscript error recovery
+module m
+ implicit none
+ integer, parameter :: n = 3
+ integer, parameter :: pc(n) = [0, 5, 6]
+ contains
+ logical function f(u)
+ integer :: u
+ !ERROR: No explicit type declared for 'i'
+ do i = 1, n
+ !ERROR: No explicit type declared for 'i'
+ if (pc(i) == u) then
+ f = .true.
+ return
+ end if
+ end do
+ f = .false.
+ end
+end module