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
1. Let _foo_ be 0.
1. Let _AC_ be a new Abstract Closure with no parameters that captures nothing and performs the following steps when called:
1. Return _foo_.
This is an error because the AC uses but doesn't capture _foo_, but the error is just "could not find a preceding declaration for _foo_". If the thing being used exists outside the AC the error should suggest adding it to the captures list.