1 2 3 4 5 6 7 8 9 10
pub mod a { mod b { pub trait Hidden {} } } struct S; impl a::b::Hidden for S {} //~ ERROR module `b` is private fn main() {}