2022-02-06 16:43:51 +08:00
|
|
|
$ cargo build
|
|
|
|
Compiling libc v0.2.86
|
|
|
|
Compiling getrandom v0.2.2
|
|
|
|
Compiling cfg-if v1.0.0
|
|
|
|
Compiling ppv-lite86 v0.2.10
|
|
|
|
Compiling rand_core v0.6.2
|
|
|
|
Compiling rand_chacha v0.3.0
|
2023-01-16 17:34:52 +08:00
|
|
|
Compiling rand v0.8.5
|
2022-02-06 16:43:51 +08:00
|
|
|
Compiling guessing_game v0.1.0 (file:///projects/guessing_game)
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> src/main.rs:22:21
|
|
|
|
|
|
|
|
|
22 | match guess.cmp(&secret_number) {
|
2023-01-16 17:34:52 +08:00
|
|
|
| --- ^^^^^^^^^^^^^^ expected struct `String`, found integer
|
|
|
|
| |
|
|
|
|
| arguments to this function are incorrect
|
2022-02-06 16:43:51 +08:00
|
|
|
|
|
|
|
|
= note: expected reference `&String`
|
|
|
|
found reference `&{integer}`
|
2023-01-16 17:34:52 +08:00
|
|
|
note: associated function defined here
|
2022-02-06 16:43:51 +08:00
|
|
|
|
2023-01-16 17:34:52 +08:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|
|
|
|
error: could not compile `guessing_game` due to previous error
|