rust-book-cn/listings/ch03-common-programming-concepts/no-listing-28-if-condition-must-be-bool/output.txt

11 lines
321 B
Plaintext
Raw Normal View History

2021-05-09 14:49:31 +08:00
$ cargo run
Compiling branches v0.1.0 (file:///projects/branches)
error[E0308]: mismatched types
--> src/main.rs:4:8
|
4 | if number {
| ^^^^^^ expected `bool`, found integer
For more information about this error, try `rustc --explain E0308`.
2022-01-18 23:33:06 +08:00
error: could not compile `branches` due to previous error