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
Consider the following case:
using FooModule foo(::FooModule.ABC) = ...
But FooModule doesn't define ABC, but ABC is present in the module due to using Bar: ABC.
ABC
using Bar: ABC
module FooModule using Bar: ABC end module Bar struct ABC end export ABC end
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Consider the following case:
But FooModule doesn't define
ABC
, butABC
is present in the module due tousing Bar: ABC
.The text was updated successfully, but these errors were encountered: