Open
Description
I tried this code:
#![warn(unreachable_pub)]
mod foo {
pub struct Foo;
}
use foo::Foo;
Here's a link for the same code on playground
I expected to see this happen: No warning, as the item is actually accessible from the root crate
Instead, this happened: It says the item is unreachable, even though it isn't