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
Let's say there is a global variable exmpl and code like this:
exmpl
alias => exmpl result = alias%var1 + 42
In this situation FCG knows that exampl%var1 is used in the code, but if it looks like that
exampl%var1
FUNCTION func() ... func = exmpl END FUNCTION alias => func() result = alias%var1 + 42
or
SUBROUTINE subr(outVar) ... outVar = exmpl END SUBROUTINE CALL subr(alias) result = alias%var1 + 42
it currently doesn't work correctly.
The text was updated successfully, but these errors were encountered:
Fixed by v1.3.0.
Sorry, something went wrong.
chovyy
No branches or pull requests
Let's say there is a global variable
exmpl
and code like this:In this situation FCG knows that
exampl%var1
is used in the code, but if it looks like thator
it currently doesn't work correctly.
The text was updated successfully, but these errors were encountered: