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

Test function imports replaced by module imports. #18464

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 2, 2024

  1. Test function imports replaced by module imports.

    Test for rust-lang#18347.
    The issue affects all code using import merging. When a function and a
    module share the same identifier, e.g.
    
    ```rust
    pub fn foo() {}
    pub mod foo { pub fn bar() {} }
    ```
    
    rust analyzer often confuses the function with the module, generating
    invalid code.
    rwakulszowa committed Nov 2, 2024
    Configuration menu
    Copy the full SHA
    5df3d79 View commit details
    Browse the repository at this point in the history