rust/tests/rustdoc/inline_cross/auxiliary/renamed-via-module.rs

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

10 lines
166 B
Rust
Raw Normal View History

#![crate_name = "foo"]
pub mod iter {
mod range {
pub struct StepBy;
}
pub use self::range::StepBy as DeprecatedStepBy;
pub struct StepBy;
}