mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 21:11:31 +08:00
29 lines
922 B
Plaintext
Executable File
29 lines
922 B
Plaintext
Executable File
$ cargo build
|
|
Compiling restaurant v0.1.0 (file:///projects/restaurant)
|
|
error[E0603]: function `add_to_waitlist` is private
|
|
--> src/lib.rs:9:37
|
|
|
|
|
9 | crate::front_of_house::hosting::add_to_waitlist();
|
|
| ^^^^^^^^^^^^^^^ private function
|
|
|
|
|
note: the function `add_to_waitlist` is defined here
|
|
--> src/lib.rs:3:9
|
|
|
|
|
3 | fn add_to_waitlist() {}
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0603]: function `add_to_waitlist` is private
|
|
--> src/lib.rs:12:30
|
|
|
|
|
12 | front_of_house::hosting::add_to_waitlist();
|
|
| ^^^^^^^^^^^^^^^ private function
|
|
|
|
|
note: the function `add_to_waitlist` is defined here
|
|
--> src/lib.rs:3:9
|
|
|
|
|
3 | fn add_to_waitlist() {}
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|
|
error: could not compile `restaurant` due to 2 previous errors
|