summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/inline_cross/auxiliary/renamed-via-module.rs
blob: 2e529078239b0fb051060ad33b67924eaf86cda7 (plain)
1
2
3
4
5
6
7
8
9
#![crate_name = "foo"]

pub mod iter {
    mod range {
        pub struct StepBy;
    }
    pub use self::range::StepBy as DeprecatedStepBy;
    pub struct StepBy;
}