Attempt to work around non-sensical error

This commit is contained in:
Arseny Kapoulkine 2021-11-11 19:42:50 -08:00
parent 8fe0dc0b6d
commit 863d3ff6ff

View file

@ -5030,7 +5030,8 @@ void TypeChecker::resolve(const IsAPredicate& isaP, ErrorVec& errVec, Refinement
return isaP.ty;
}
return std::nullopt;
std::optional<TypeId> res = std::nullopt;
return res;
};
std::optional<TypeId> ty = resolveLValue(refis, scope, isaP.lvalue);