You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
e.g.
let y := x + 8;
should not throw a "not in context" error. The x should be implicitly declared.
Moreover, e.g.
let z := x + 3;
should refer to the same x as the previous "let y..." expression, so the x should be implicitly declared in the surrounding scope.
The text was updated successfully, but these errors were encountered:
e.g.
let y := x + 8;
should not throw a "not in context" error. The x should be implicitly declared.
Moreover, e.g.
let z := x + 3;
should refer to the same x as the previous "let y..." expression, so the x should be implicitly declared in the surrounding scope.
The text was updated successfully, but these errors were encountered: