Running the following code fails with a closure_env_local error ```typescript (function fails() { const closeOver = (fn) => fn(); const obj = { boom() { const boom = true; return closeOver(() => boom); }, }; return obj; })(); ```
Running the following code fails with a closure_env_local error