找出模块路径里的 bug

来自 模块与 crate
Rust 1.98 进阶 4分钟 找出 1处问题

找出 main 为何不能通过这条路径构造公开的 Product 类型。

Rust
mod store {
    mod catalog {
        pub struct Product;
    }
}

fn main() {
    let _item = store::catalog::Product;
}
在试验场中打开
报告错误