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
To reproduce this:
Foo
Foo/src/Foo.jl
module Foo baremodule Flags using Base: @enum @enum Flag flag end end
StructTypes
The following lint is displayed (see attached file)
However, it works fine, as Base is always importable in baremodules:
Base
julia> using Foo julia> Foo.Flags.flag flag::Flag = 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce this:
Foo
with the following content inFoo/src/Foo.jl
:StructTypes
v 1.10.0 to the Project.toml. The error does not occur if StructTypes is not in the Project.The following lint is displayed (see attached file)
However, it works fine, as
Base
is always importable in baremodules:The text was updated successfully, but these errors were encountered: