mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
$ 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();
|
|
| ^^^^^^^ --------------- function `add_to_waitlist` is not publicly re-exported
|
|
| |
|
|
| 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();
|
|
| ^^^^^^^ --------------- function `add_to_waitlist` is not publicly re-exported
|
|
| |
|
|
| private module
|
|
|
|
|
note: the module `hosting` is defined here
|
|
--> src/lib.rs:2:5
|
|
|
|
|
2 | mod hosting {
|
|
| ^^^^^^^^^^^
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|
|
error: could not compile `restaurant` (lib) due to 2 previous errors
|