This is a sub-tracking issue for the RFC "Clarify and streamline paths and visibility" (rust-lang/rfcs#2126)
as well as the internals post Relative Paths in Rust 2018.
The issue deals with revamping paths and making a decision about whether we should pick:
Unresolved questions:
This is a sub-tracking issue for the RFC "Clarify and streamline paths and visibility" (rust-lang/rfcs#2126)
as well as the internals post Relative Paths in Rust 2018.
The issue deals with revamping paths and making a decision about whether we should pick:
uniform_pathsvariant.Proposed in Relative Paths in Rust 2018.
anchored_use_pathsvariant.You have to use
self::,super::, andcrate::, or an external crate name explicitly....See RFC: Clarify and streamline paths and visibility rfcs#2126).
uniform_paths, #[feature(uniform_paths)]: allowuse x::y;to resolve throughself::x, not just::x. #52923anchored_use_pathsUnresolved questions: