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
Following up from https://groups.google.com/d/msg/julia-users/Dp7L9xfJtsY/rmMEAtnsBQAJ:
julia> try using LightGraphs catch end julia> Graph ERROR: UndefVarError: Graph not defined
but
julia> try using LightGraphs true catch false end true julia> Graph LightGraphs.Graph
and
julia> try using LightGraphs nothing catch end julia> Graph LightGraphs.Graph
error thrown is
julia> try using LightGraphs catch y println("y = $y") end y = ErrorException("unsupported or misplaced expression using")
Why the inconsistency?
The text was updated successfully, but these errors were encountered:
related: #5352 #8051
Sorry, something went wrong.
possible fix for #12697; allow using/import in value position more often
e66b4f1
Both of the examples that failed work on 0.5. Lightgraphs fail to precompile on 0.6 but it seems the underlying problem is fixed.
No branches or pull requests
Following up from https://groups.google.com/d/msg/julia-users/Dp7L9xfJtsY/rmMEAtnsBQAJ:
but
and
error thrown is
Why the inconsistency?
The text was updated successfully, but these errors were encountered: