This causes an error: ``` mod foo {} mod bar { pub use foo; // error: `foo` is private, and cannot be reexported } ``` Since `foo` is no more accessible than it was before, this doesn't seem like an actual instance of [E0365](https://doc.rust-lang.org/error-index.html#E0365).