mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 04:41:49 +08:00
25 lines
814 B
Plaintext
25 lines
814 B
Plaintext
$ cargo build
|
|
Compiling restaurant v0.1.0 (file:///projects/restaurant)
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `hosting`
|
|
--> src/lib.rs:11:9
|
|
|
|
|
11 | hosting::add_to_waitlist();
|
|
| ^^^^^^^ use of undeclared crate or module `hosting`
|
|
|
|
|
help: consider importing this module through its public re-export
|
|
|
|
|
10 + use crate::hosting;
|
|
|
|
|
|
|
warning: unused import: `crate::front_of_house::hosting`
|
|
--> src/lib.rs:7:5
|
|
|
|
|
7 | use crate::front_of_house::hosting;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `#[warn(unused_imports)]` on by default
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|
|
warning: `restaurant` (lib) generated 1 warning
|
|
error: could not compile `restaurant` (lib) due to 1 previous error; 1 warning emitted
|