blob: 9aab4928ffa5733d4229a07be1c86a9e6ac67afe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0308]: mismatched types
--> $DIR/issue-53348.rs:20:13
|
LL | a = *i.to_string();
| ^^^^^^^^^^^^^^ expected struct `std::string::String`, found str
|
= note: expected type `std::string::String`
found type `str`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|