mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 04:41:49 +08:00
13 lines
476 B
Plaintext
Executable File
13 lines
476 B
Plaintext
Executable File
$ cargo run
|
|
Compiling traits-example v0.1.0 (file:///projects/traits-example)
|
|
error[E0283]: type annotations needed
|
|
--> src/main.rs:20:43
|
|
|
|
|
20 | println!("A baby dog is called a {}", Animal::baby_name());
|
|
| ^^^^^^^^^^^^^^^^^ cannot infer type
|
|
|
|
|
= note: cannot satisfy `_: Animal`
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|
|
error: could not compile `traits-example` due to previous error
|