Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
lint
/
issue-57410.rs
blob: 0cf4b8068e46b857e789e773293b4ded4b68da6a [
file
] [
log
] [
blame
]
// 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
()
{}