We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When locals aren't used in remote legs, we don't need to move them to the environment.
The text was updated successfully, but these errors were encountered:
This one is particularly hard, consider:
proc foo() = var s = "string" var c = cstring(s) noop() echo $c
Despite only c is used in the following continuation, we must keep s because c leases s resource.
c
s
Sorry, something went wrong.
No branches or pull requests
When locals aren't used in remote legs, we don't need to move them to the environment.
The text was updated successfully, but these errors were encountered: