rust/tests/ui/uniform-paths/auxiliary/issue-53691.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
94 B
Rust
Raw Normal View History

// edition:2018
mod m { pub fn f() {} }
mod n { pub fn g() {} }
pub use m::f;
pub use n::g;