rust/src/test/ui/estr-subtyping.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

16 lines
469 B
Plaintext

error[E0308]: mismatched types
--> $DIR/estr-subtyping.rs:10:15
|
LL | wants_uniq(x);
| ^
| |
| expected struct `std::string::String`, found &str
| help: try using a conversion method: `x.to_string()`
|
= 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`.