mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 04:41:49 +08:00
13 lines
503 B
Plaintext
13 lines
503 B
Plaintext
|
$ cargo run
|
||
|
Compiling closure-example v0.1.0 (file:///projects/closure-example)
|
||
|
error[E0308]: mismatched types
|
||
|
--> src/main.rs:5:29
|
||
|
|
|
||
|
5 | let n = example_closure(5);
|
||
|
| ^- help: try using a conversion method: `.to_string()`
|
||
|
| |
|
||
|
| expected struct `String`, found integer
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0308`.
|
||
|
error: could not compile `closure-example` due to previous error
|