We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Def F3 as (Error "Test error"; F3); Def F2 as (F3; F2); Def F1 as (F2; F1); Def F0 as (F1; F0); F0;
gets you an unreachable():
unreachable()
0 cognac 0x0000000100ae81ac unreachable + 72 1 cognac 0x0000000100ae8a4c resolve_early_use + 0 2 cognac 0x0000000100af1804 main + 424 3 dyld 0x0000000183dc8274 start + 2840
The text was updated successfully, but these errors were encountered:
Looks like the issue is in add_arguments() assigning arguments to the function too optimistically.
add_arguments()
Sorry, something went wrong.
Minimum reproducible example
Def F3 as (F3); Def F2 as (F3 ; F2); F3;
No branches or pull requests
gets you an
unreachable()
:The text was updated successfully, but these errors were encountered: