rust/tests/ui/lint/issue-57410-1.rs
2023-01-11 09:32:08 +00:00

19 lines
268 B
Rust

// check-pass
// Originally from #53925.
// Tests that the `unreachable_pub` lint doesn't fire for `pub self::bar::Bar`.
#![deny(unreachable_pub)]
mod foo {
mod bar {
pub struct Bar;
}
pub use self::bar::Bar;
}
pub use foo::Bar;
fn main() {}