mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
235 B
Rust
18 lines
235 B
Rust
// check-pass
|
|
|
|
// Tests that the `unreachable_pub` lint doesn't fire for `pub self::imp::f`.
|
|
|
|
#![deny(unreachable_pub)]
|
|
|
|
mod m {
|
|
mod imp {
|
|
pub fn f() {}
|
|
}
|
|
|
|
pub use self::imp::f;
|
|
}
|
|
|
|
pub use self::m::f;
|
|
|
|
fn main() {}
|