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
I'm a bit confused what is doing Suppressor.jl which doesn't work correctly in a module.
Consider this:
julia> using Suppressor julia> g = 1 1 julia> @suppress g = 0 0 julia> g 0
Everything works fine, but when I move the code in a module, it doesn't work anymore:
julia> module M using Suppressor g = 1 @suppress g = 0 end Main.M julia> Main.M.g 1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm a bit confused what is doing Suppressor.jl which doesn't work correctly in a module.
Consider this:
Everything works fine, but when I move the code in a module, it doesn't work anymore:
The text was updated successfully, but these errors were encountered: