1error[E0603]: module `n` is private
2  --> $DIR/issue-28388-2.rs:7:8
3   |
4LL | use m::n::{};
5   |        ^ private module
6   |
7note: the module `n` is defined here
8  --> $DIR/issue-28388-2.rs:4:5
9   |
10LL |     mod n {}
11   |     ^^^^^
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0603`.
16