mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
Attempt to work around non-sensical error
This commit is contained in:
parent
8fe0dc0b6d
commit
863d3ff6ff
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue