Skip to content
New issue

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

use name in source module when importing an aliased binding #43291

Merged
merged 2 commits into from
Feb 28, 2022

Commits on Feb 17, 2022

  1. use name in source module when importing an aliased binding

    This solves the following problem:
    ```julia
    julia> module A
               import Base.identity as id
           end
    Main.A
    
    julia> import .A.id
    
    julia> id
    ERROR: UndefVarError: id not defined
    ```
    Pangoraw committed Feb 17, 2022
    Configuration menu
    Copy the full SHA
    1eea8cc View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2022

  1. Configuration menu
    Copy the full SHA
    060016d View commit details
    Browse the repository at this point in the history