2018-08-15 12:30:50 -07:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-53348.rs:10:13
|
2018-08-15 12:30:50 -07:00
|
|
|
|
|
2021-05-06 19:09:35 -07:00
|
|
|
LL | let mut a = String::new();
|
|
|
|
| ------------- expected due to this value
|
|
|
|
LL | for i in v {
|
2018-08-15 12:30:50 -07:00
|
|
|
LL | a = *i.to_string();
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^^^^^^ expected struct `String`, found `str`
|
2018-08-15 12:30:50 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|