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
The following code fails with a parsing error on the 5th line, while it should be valid
if true { mut b = 1; if true { b = 0; } b } else { 15 }
Adding a semicolon at the end of the inner if fixes the parsing but isn't really what we want:
if
if true { mut b = 1; if true { b = 0; }; b } else { 15 }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following code fails with a parsing error on the 5th line, while it should be valid
Adding a semicolon at the end of the inner
if
fixes the parsing but isn't really what we want:The text was updated successfully, but these errors were encountered: