Sign in
◑
Theme
rust
/
rust
/
refs/heads/main
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
pub_use.rs
blob: 2e8877418a44693b3b19549b6795fc51cc352ebf [
file
] [
edit
]
#![
warn
(
clippy
::
pub_use
)]
#![
no_main
]
pub
mod
outer
{
mod
inner
{
pub
struct
Test
{}
}
// should be linted
pub
use
inner
::
Test
;
//~^ pub_use
}
// should not be linted
use
std
::
fmt
;