<!-- If you have a question please search or post to our Discourse site: https://discourse.julialang.org. We use the GitHub issue tracker for bug reports and feature requests only. If you're submitting a bug report, be sure to include as much relevant information as possible, including a minimal reproducible example and the output of `versioninfo()`. If you're experiencing a problem with a particular package, open an issue on that package's repository instead. Thanks for contributing to the Julia project! --> MRE: ```julia module A global original() = println("Hello") module B import ..A: original as renamed export renamed end end using .A.B renamed() ``` ``` WARNING: could not import A.renamed into Main Hello ``` I confirmed the same warning is printed on v1.7 as well.