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
This code:
SuperStrict Framework Brl.StandardIO Function CallFunc() exit End Function
Correctly results in:
[ 9%] Processing:local_subfunc.bmx Compile Error: Exit statement must appear inside a loop. [/Testcodes/bmx_tests/local_subfunc.bmx;5;0] Compilation failed.
While this code here:
SuperStrict Framework Brl.StandardIO For local i:int = 0 until 100 CallFunc() Next Function CallFunc() exit End Function
results in:
[ 9%] Processing:local_subfunc.bmx [ 91%] Compiling:local_subfunc.bmx.console.release.linux.x64.c /Testcodes/bmx_tests/.bmx/local_subfunc.bmx.console.release.linux.x64.c: In function ‘_m_local_subfunc_CallFunc’: /Testcodes/bmx_tests/.bmx/local_subfunc.bmx.console.release.linux.x64.c:3:9: error: break statement not within loop or switch 3 | break; | ^~~~~ Compilation failed. Build Error: failed to compile (256)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This code:
Correctly results in:
While this code here:
results in:
The text was updated successfully, but these errors were encountered: