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
using M: a as b
baremodule M1 module Inner macro dummy end end using .Inner: @dummy as @sync # const var"@sync" = Inner.var"@dummy" # this works end baremodule M2 using ..M1: @sync end using Test @test M2.var"@sync" === M1.var"@sync"
fails with
Expression: Demo2.var"@sync" === Demo.var"@sync" Evaluated: var"@sync" === Main.Demo.Inner.var"@dummy"
The text was updated successfully, but these errors were encountered:
Seems like it is caused by the same problem as #43290 with a possible fix in #43291
Using #43291, both lhs and rhs resolve to the same binding:
julia> @test M2.var"@sync" === M1.var"@sync" Test Passed Expression: M2.var"@sync" === M1.var"@sync" Evaluated: Main.M1.Inner.var"@dummy" === Main.M1.Inner.var"@dummy"
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
fails with
The text was updated successfully, but these errors were encountered: