mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 21:11:31 +08:00
13 lines
416 B
Plaintext
Executable File
13 lines
416 B
Plaintext
Executable File
$ cargo run
|
|
Compiling enums v0.1.0 (file:///projects/enums)
|
|
error[E0277]: cannot add `Option<i8>` to `i8`
|
|
--> src/main.rs:5:17
|
|
|
|
|
5 | let sum = x + y;
|
|
| ^ no implementation for `i8 + Option<i8>`
|
|
|
|
|
= help: the trait `Add<Option<i8>>` is not implemented for `i8`
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|
|
error: could not compile `enums` due to previous error
|