]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch07-managing-growing-projects/listing-07-03/output.txt
New upstream version 1.43.0+dfsg1
[rustc.git] / src / doc / book / listings / ch07-managing-growing-projects / listing-07-03 / output.txt
1 $ cargo build
2 Compiling restaurant v0.1.0 (file:///projects/restaurant)
3 error[E0603]: module `hosting` is private
4 --> src/lib.rs:9:28
5 |
6 9 | crate::front_of_house::hosting::add_to_waitlist();
7 | ^^^^^^^
8
9 error[E0603]: module `hosting` is private
10 --> src/lib.rs:12:21
11 |
12 12 | front_of_house::hosting::add_to_waitlist();
13 | ^^^^^^^
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0603`.
18 error: could not compile `restaurant`.
19
20 To learn more, run the command again with --verbose.