You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module TestLinter
export CONST
const CONST = 1
module SubModuleTopLevel
using ..TestLinter
const MY_CONST = CONST + 1 # everything is fine
end
include("nested/sub_module.jl")
end
where nested/sub_module.jl is
module SubModuleMidLevel
using ..TestLinter
const MY_CONST = CONST + 1 # ! missing reference CONST here
end
I also noticed, that there are some other recently opened issues related to const :
Example:
where
nested/sub_module.jl
isI also noticed, that there are some other recently opened issues related to
const
:Dont know if they are caused by the same bug or not.
The text was updated successfully, but these errors were encountered: