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
Introduced via 477d095, when process_file end scope test was edited. Now we using a variable with the name end will cause the scope to end.
process_file
end
program diag implicit none integer :: end if (.true.) then end = 10 end if end program diag
The text was updated successfully, but these errors were encountered:
Fixes end of scope caused by end named vars
9d3f42c
Fixes END variable closes scope prematurely #9 The solution is to perform a negative lookahead for non-word characters
gnikit
Successfully merging a pull request may close this issue.
Introduced via 477d095, when
process_file
end scope test was edited.Now we using a variable with the name
end
will cause the scope to end.MWE
The text was updated successfully, but these errors were encountered: