mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 23:50:25 +08:00
33 lines
861 B
Plaintext
33 lines
861 B
Plaintext
|
$ cargo build
|
||
|
Compiling restaurant v0.1.0 (file:///projects/restaurant)
|
||
|
error[E0603]: module `hosting` is private
|
||
|
--> src/lib.rs:9:28
|
||
|
|
|
||
|
9 | crate::front_of_house::hosting::add_to_waitlist();
|
||
|
| ^^^^^^^ private module
|
||
|
|
|
||
|
note: the module `hosting` is defined here
|
||
|
--> src/lib.rs:2:5
|
||
|
|
|
||
|
2 | mod hosting {
|
||
|
| ^^^^^^^^^^^
|
||
|
|
||
|
error[E0603]: module `hosting` is private
|
||
|
--> src/lib.rs:12:21
|
||
|
|
|
||
|
12 | front_of_house::hosting::add_to_waitlist();
|
||
|
| ^^^^^^^ private module
|
||
|
|
|
||
|
note: the module `hosting` is defined here
|
||
|
--> src/lib.rs:2:5
|
||
|
|
|
||
|
2 | mod hosting {
|
||
|
| ^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0603`.
|
||
|
error: could not compile `restaurant`
|
||
|
|
||
|
To learn more, run the command again with --verbose.
|